-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
42
43
44
45
{
"name": "ts-express-mongo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "tsc && npm run lint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch-ts": "tsc -w",
"test": "jest --forceExit --coverage --verbose",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^16.1.8",
"@types/config": "0.0.36",
"bcrypt": "^3.0.7",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"http-status": "^1.4.2",
"mongoose": "^5.8.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.2",
"@types/faker": "^4.1.8",
"@types/hapi__joi": "^16.0.5",
"@types/jest": "^24.0.24",
"@types/mongoose": "^5.5.35",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"config": "^3.2.4",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}