-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 811 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 811 Bytes
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
{
"name": "backend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "ts-node ./bin/www.ts",
"dev": "PORT=3001 npx nodemon start",
"build": "./node_modules/.bin/tslint -p tslint.json && ./node_modules/.bin/tsc"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"firebase": "^7.15.1",
"firebase-admin": "^5.4.1",
"firebase-functions": "^0.7.0",
"helmet": "^3.23.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.15",
"morgan": "~1.9.1",
"redis": "^3.0.2",
"typescript": "^3.9.5"
},
"devDependencies": {
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}