-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "AwesomeTeamCoin",
"version": "1.0.0",
"description": "This is the AwesomeTeamCoin by Ethereum",
"author": "HIKARU KOBORI",
"license": "MIT",
"private": false,
"scripts": {
"console": "truffle console --network ganache",
"compile": "truffle compile",
"migrate": "truffle migrate --network ganache",
"start": "scripts/start.sh",
"test": "scripts/test.sh",
"lint:es": "eslint .",
"lint:sol": "solium -d .",
"lint": "yarn run lint:es && yarn run lint:sol"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bignumber.js": "^6.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",
"ganache-cli": "^6.0.3",
"solium": "^1.1.3",
"truffle": "^4.0.5",
"truffle-contract": "^3.0.3",
"truffle-hdwallet-provider": "^0.0.3",
"zeppelin-solidity": "^1.6.0"
}
}