-
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": "test-server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-mongoose-store": "^1.0.7",
"express-session": "^1.16.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.13",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-jwt": "0.0.42",
"@types/express-session": "^1.15.14",
"@types/jsonwebtoken": "^8.3.3",
"@types/mongoose": "^5.5.13",
"@types/node": "^12.7.2",
"@types/passport": "^1.0.1",
"@types/passport-local": "^1.0.33",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}