-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "solidity_boilerplate",
"version": "0.1.0",
"description": "Quickstart solidity boilerplate using the process created for developing the Dharma Protocol (c) 2017 Dharma Labs Inc.",
"scripts": {
"generate-typings": "abi-gen --abis './build/contracts/*.json' --out './types/generated' --template './types/contract_templates/contract.handlebars' --partials './types/contract_templates/partials/*.handlebars'",
"transpile": "rm -rf ./transpiled; copyfiles ./build/**/* ./transpiled; tsc",
"lint-ts": "tslint migrations/*.ts test/**/*.ts",
"lint-sol": "solhint contracts/*.sol contracts/**/*.sol",
"lint": "npm run lint-ts; npm run lint-sol",
"compile": "truffle compile",
"production": "truffle compile --network production; npm run generate-typings; npm run transpile; truffle migrate --network production; truffle test --network production",
"soltsice": "soltsice",
"migrate": "npm run transpile; truffle migrate",
"test": "npm run compile; npm run generate-typings; npm run migrate; truffle test",
"chain": "ganache-cli --networkId 70 --accounts 20 --gasLimit 80000000",
"validate": "npm ls"
},
"repository": "git@github.com:collincusce/solidity_boilerplate.git",
"author": "Collin Cusce <collin.cusce@gmail.com>",
"license": "UNLICENSE",
"dependencies": {
"0x.js": "^0.28.0",
"@0xproject/utils": "^0.1.0",
"@types/bignumber.js": "^4.0.3",
"@types/chai": "^4.0.5",
"@types/chai-as-promised": "^7.1.0",
"@types/json-stable-stringify": "^1.0.32",
"@types/lodash": "^4.14.86",
"NonFungibleToken": "https://github.com/collincusce/NonFungibleToken.git",
"abi-decoder": "^1.0.9",
"bignumber.js": "^4.1.0",
"bs58": "^4.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"copyfiles": "^1.2.0",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-util": "^5.1.2",
"ganache-cli": "^6.0.3",
"json-stable-stringify": "^1.0.1",
"left-pad": "^1.2.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"solhint": "^1.1.8",
"solidity-sha3": "^0.4.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"web3": "0.19.0",
"web3-typescript-typings": "^0.7.2",
"zeppelin-solidity": "^1.6.0"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"@0xproject/abi-gen": "^0.1.1",
"@0xproject/types": "^0.1.1",
"@types/fs-extra": "^5.0.0",
"@types/node": "^8.5.1",
"child-process-promise": "^2.2.1",
"fs-extra": "^5.0.0",
"truffle": "^4.1.5",
"types-bn": "^0.0.1",
"types-ethereumjs-util": "^0.0.5"
}
}