-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
47
48
49
50
51
{
"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": "cd test && mocha --timeout 40000 --exit ",
"build": "cd client && yarn install && yarn run build",
"start": "cd server && yarn install && cross-env BNB_ENV=localhost nodemon server.js"
},
"private": false,
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cron": "^1.6.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"fs": "^0.0.1-security",
"mongodb": "^2.2.33",
"mongoose": "^5.2.2",
"node-cron": "^2.0.3",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-facebook-token": "^3.3.0",
"passport-google-oauth": "^1.0.0",
"path": "^0.12.7",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"expect": "^23.3.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"should": "^13.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cross-env": "^5.2.0",
"expect": "^23.3.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"should": "^13.2.1"
},
"engines": {
"node": "*"
}
}