-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.94 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
{
"name": "wetonomy",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/apps-shared-minime": "^1.0.0",
"@aragon/apps-voting": "^2.0.0",
"@aragon/client": "^1.0.0-beta.8",
"@aragon/os": "^4.0.1",
"@aragon/ui": "^0.11.0",
"minimetoken": "^0.2.0",
"opn": "^5.4.0",
"truffle": "^4.1.14"
},
"devDependencies": {
"@aragon/cli": "^5.2.0",
"@aragon/test-helpers": "^1.0.1",
"babel-plugin-styled-components": "^1.5.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"ganache-cli": "^6.1.5",
"lcov-result-merger": "^1.2.0",
"lerna": "^2.11.0",
"parcel-bundler": "^1.8.1",
"solhint": "^1.2.1",
"typedarray-to-buffer": "^3.1.5"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-hoist=@aragon/os",
"clean": "git clean -fdxi",
"start": "npm run build:project && npm run publish && npm run start:kit",
"start:nb": "npm run publish && npm run start:no-acl",
"start:kit": "./scripts/run-kit.sh wetonomyKit",
"start:no-acl": "./scripts/run-kit.sh wetonomyKitAnyEntity dummyData",
"test:kit": "cross-env CI=false ./scripts/test-kit.sh",
"test": "lerna run --scope=wetonomy-* --concurrency=1 --stream test && npm run test:kit",
"coverage": "lerna run --scope=wetonomy-* --concurrency=1 --stream coverage",
"lint": "solhint apps/**/contracts/*.sol contracts/*.sol",
"compile": "aragon contracts compile && npm run lint",
"build:project": "npm run compile && lerna run --stream build:project",
"publish": "lerna run --concurrency=1 --stream publish",
"publish:rinkeby": "lerna run --concurrency=1 --stream publish:rinkeby",
"deploy:kit": "truffle deploy --network rpc",
"deploy:kit:rinkeby": "cross-env truffle deploy --network rinkeby",
"devchain": "aragon devchain"
},
"keywords": [],
"license": "MIT"
}