-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.18 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "plasma",
"version": "1.0.0",
"private": "true",
"description": "",
"main": "truffle-config.js",
"bin": {
"plasma-cli": "dist/src/cli/index.js"
},
"scripts": {
"testrpc": "ganache-cli --db=./testrpc-db --mnemonic='clock radar mass judge dismiss just intact mind resemble fringe diary casino' --gasLimit=13000000",
"test": "truffle test",
"test-ci": "npm run clean && npm run compile && scripts/test.sh",
"compile": "truffle compile",
"deploy": "truffle deploy",
"lint-contracts": "solhint -d contracts/**/*.sol",
"lint-js": "eslint src/**/*.js test/**/*.js",
"lint": "npm run lint-contracts && npm run lint-js",
"clean": "rm -rf dist && rm -rf db/* && rm -rf testrpc-db/* && rm -rf devdb/*",
"authorized-dev": "scripts/authorized-dev.sh",
"dev": "scripts/dev.sh",
"build": "npm run clean && mkdir -p dist && babel --require babel-polyfill src -s -D -d dist",
"start": "cross-env NODE_ENV=production node dist/index.js",
"cli": "./src/cli/index.js"
},
"author": "Jaynti Kanani <jdkanani@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bip39": "^2.5.0",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"eslint": "^4.16.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-wallet": "^0.6.0",
"ganache-cli": "^6.0.3",
"nodemon": "^1.14.11",
"solhint": "^1.1.9",
"truffle": "^4.0.5"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"cross-env": "^5.1.3",
"dotenv": "^4.0.0",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.3",
"express": "^4.16.2",
"jsonschema": "^1.2.2",
"level": "^2.1.2",
"m-tree": "0.0.4",
"monotonic-timestamp": "0.0.9",
"morgan": "^1.9.0",
"safe-buffer": "^5.1.1",
"web3": "^1.0.0-beta.31",
"yargs": "^11.0.0"
}
}