-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "wallets",
"version": "1.0.0",
"description": "",
"main": "./src",
"scripts": {
"start-dev": "NODE_ENV=dev nodemon ./src/index.js",
"start-prod": "NODE_ENV=prod node ./src/index.js",
"lint": "eslint ./src/ ./public/scripts/",
"mocha": "mocha ./test --recursive",
"test": "npm run mocha",
"db-start": "mongod --dbpath ./data --syslog --fork",
"db-stop": "kill -9 mongod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryptocracyExchange/wallets.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/CryptocracyExchange/wallets/issues"
},
"homepage": "https://github.com/CryptocracyExchange/wallets#readme",
"devDependencies": {
"chai": "^3.5.0",
"deepstream.io": "^2.1.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.8.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"request": "^2.79.0",
"request-mocha": "^0.2.0",
"sinon": "^1.17.7"
},
"dependencies": {
"blockcypher": "^0.2.0",
"body-parser": "^1.15.2",
"deepstream.io-client-js": "^2.1.1",
"express": "^4.14.0",
"morgan": "^1.7.0"
}
}