-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 888 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 888 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
32
33
34
{
"name": "cryptodeskbackend",
"version": "1.0.0",
"description": "The backend for the cryptodesk product.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start-dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cryptodesk/backend.git"
},
"author": "Gabriel Esteban <yufuven@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Cryptodesk/backend/issues"
},
"homepage": "https://github.com/Cryptodesk/backend#readme",
"dependencies": {
"autobahn": "^0.9.4",
"body-parser": "^1.17.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"gdax": "^0.3.1",
"mongoose": "^4.9.2",
"poloniex-api-node": "^1.0.1",
"socket.io": "^1.7.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}