forked from vibhorgupta-gh/Bulls-and-Bears
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 905 Bytes
/
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
{
"name": "Bulls-and-Bears",
"version": "1.0.0",
"description": "Virtual share market simulation",
"repository": "https://github.com/VibhorCodecianGupta/Bulls-and-Bears.git",
"author": "IEEE DTU",
"license": "MIT",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env BNB_ENV=localhost node server.js",
"prod": "cross-env BNB_ENV=production node server.js"
},
"private": false,
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"mongoose": "^5.2.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-facebook-token": "^3.3.0",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"expect": "^23.3.0",
"mocha": "^5.2.0",
"should": "^13.2.1"
}
}