-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 760 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 760 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
{
"name": "number-game",
"version": "1.0.0",
"description": "An algorithm to win with numbers.",
"main": "server/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"ccxt": "^1.10.430",
"express": "^4.16.2",
"mongoose": "^4.13.7",
"mysql": "^2.15.0",
"node-schedule": "^1.2.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"mocha": "^4.0.1",
"nodemon": "^1.12.1"
},
"scripts": {
"start": "nodemon server/index.js --exec babel-node",
"build": "babel server -d dist",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"author": "yashthakor",
"license": "ISC"
}