-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 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
{
"name": "ecran",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/elvisduru/ecran.git",
"author": "Elvis Duru <[email protected]>",
"license": "MIT",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"date-fns": "^2.14.0",
"express": "^4.17.1",
"firebase": "^7.15.5",
"firebase-admin": "^9.1.1",
"formidable": "^1.2.2",
"graceful-fs": "^4.2.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.13",
"node-dir": "^0.1.17",
"node-fetch": "^2.6.0",
"socket.io": "^2.3.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && npm start",
"server": "nodemon --ignore client/ index.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "node index.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"engines": {
"node": "12.18.4"
}
}