-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 968 Bytes
/
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
{
"name": "deep-consultation-solutions",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"start": "node ./dist/bin/www",
"test": "mocha --config=.mocharc.json",
"postinstall": "npm run build"
},
"dependencies": {
"bcrypt": "^5.0.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-jwt": "^6.1.0",
"express-validator": "^6.13.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/mysql": "^2.15.19",
"@types/node": "^16.11.1",
"@types/supertest": "^2.0.11",
"mocha": "^9.1.3",
"supertest": "^6.1.6"
}
}