-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
46
47
48
49
{
"name": "myExpress",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/xudaqian1/myExpress.git",
"author": "xudaqian <[email protected]>",
"license": "MIT",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cookie-session": "^2.0.41",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/helmet": "0.0.47",
"@types/joi": "^14.3.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^8.0.0",
"@types/mongoose": "^5.7.29",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.14",
"@types/passport": "^1.0.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-validation": "^3.0.5",
"helmet": "^3.23.3",
"http-status-codes": "^1.4.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"loadsh": "0.0.4",
"mocha": "^8.0.1",
"mongoose": "^5.9.21",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"ts-node-dev": "^1.0.0-pre.50",
"typescript": "^3.9.6"
},
"scripts": {
"build": "tsc",
"start": "ts-node-dev --respawn src/index.ts",
"dev": "nodemon --exec ts-node --files src/server.ts",
"test": "TS_NODE_FILES=true NODE_ENV=test nodemon --exec mocha -r ts-node/register src/test/*.spec.ts --exit"
}
}