-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "planni-backend",
"version": "0.2.0",
"private": true,
"module": "CommonJS",
"scripts": {
"start": "tsc && nodemon --trace-warnings build/bin/www.js",
"build": "tsc --project ./",
"tsc": "tsc"
},
"dependencies": {
"@types/node": "^14.14.1",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"ejs": "~2.6.1",
"express": "~4.16.1",
"express-session": "^1.17.1",
"http-errors": "~1.6.3",
"http-proxy-middleware": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.9",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@types/mongoose": "^5.10.3",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}