-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rm -rf dist",
"dev": "npm run clean && nodemon",
"start": "NODE_ENV=production node dist/app.js",
"lint": "tsc --noEmit && eslint ./src --ext .ts",
"test": "jest --collect-coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-pino-logger": "^4.0.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.6",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"nodemon": "^2.0.21",
"pino-pretty": "^9.4.0",
"prettier": "^2.8.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-pino-logger": "^7.0.0",
"pino": "^8.6.1"
}
}