-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 996 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
34
35
36
{
"name": "btcticker",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "npm-run-all start-develop",
"start-develop": "CHECK_INTERVAL=60000 nodemon --verbose --debug ./bin/www --exec babel-node",
"start-with-babel": "babel-node ./bin/www",
"test": "mocha --reporter progress build-helpers/test-setup.js \"**/*.spec.js\""
},
"dependencies": {
"@reactivex/rxjs": "^5.3.0",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"express": "~4.15.2",
"morgan": "~1.8.1",
"node-fetch": "^1.6.3",
"ramda": "^0.23.0",
"serve-favicon": "~2.4.2",
"socket.io": "^1.7.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.4.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"faker": "^4.1.0",
"fetch-mock": "^5.10.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"supertest": "^3.0.0"
}
}