-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "sonance-server",
"version": "0.0.1",
"scripts": {
"start": "npm run dev",
"dev": "nodemon --inspect=9230 ./src/bin/www.ts",
"db": "mongod",
"build": "tsc -p tsconfig.json"
},
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/http-errors": "^1.6.3",
"@types/mongoose": "^5.5.43",
"@types/morgan": "^1.7.37",
"@types/node-sass-middleware": "0.0.31",
"@types/passport": "^1.0.2",
"@types/passport-local": "^1.0.33",
"argon2": "^0.25.1",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"express-validator": "^6.3.1",
"hbs": "^4.1.0",
"http-errors": "^1.7.3",
"module-alias": "^2.2.2",
"mongodb": "^3.5.2",
"mongoose": "^5.8.9",
"morgan": "~1.9.0",
"node-sass-middleware": "0.11.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/node": "^13.5.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.11.2"
}
}