-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 3.62 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
68
69
70
71
72
{
"name": "root",
"private": true,
"devDependencies": {
"lerna": "^3.19.0"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build:apps": "npm run build:app:judge",
"build:app:judge": "lerna run build:app --scope=@porton/apps-judge",
"build:script:judge": "lerna run build:script --scope=@porton/apps-judge",
"clean:aragon": "rm -rf ~/.aragon && rm -rf ~/.ipfs",
"clean:build": "npm run clean -- $npm_package_build_exclude_pattern",
"clean": "git clean -fXd",
"coverage": "lerna run coverage --no-bail",
"coveralls": "cat packages/*/coverage/lcov.info | coveralls",
"cypress:open": "cypress open",
"cypress:run": "wait-on http://localhost:3000/#/0x5b6a3301a67A4bfda9D3a528CaD34cac6e7F8070 && cypress run",
"cypress": "CYPRESS=true node_modules/@aragon/test-helpers/ganache-cli.sh",
"deploy:apps:rinkeby": "lerna run --scope='@porton/apps-*' deploy:rinkeby --stream",
"deploy:apps:rpc": "lerna run --scope='@porton/apps-*' deploy:rpc --stream",
"deploy:apps:staging": "lerna run --scope='@porton/apps-*' deploy:staging --stream",
"deploy:rinkeby": "npm run deploy:apps:rinkeby",
"deploy:rpc": "npm run deploy:apps:rpc",
"deploy:staging": "npm run deploy:apps:staging",
"devchain:reset": "npx aragon devchain --reset",
"devchain": "lerna run devchain --stream",
"frontend": "lerna run frontend --stream --parallel",
"frontend:judge": "cd packages/judge && npm run frontend",
"lint:judge": "cd packages/judge && npm run lint",
"lint": "npm run lint:contracts && lerna exec --scope=@porton/apps-* --stream -- eslint app",
"mine": "lerna exec --scope=@porton/test-helpers truffle exec ./mine.js",
"postinstall": "npm run bootstrap",
"publish:cd": "shared/deployments/publish-cd.sh",
"publish:apps": "lerna run publish",
"publish:http": "lerna run --scope='@porton/apps-*' publish:http --stream",
"restart": "RESTART_KIT=true node_modules/@aragon/test-helpers/ganache-cli.sh",
"compile": "aragon contracts compile",
"deploy": "aragon deploy",
"start:ipfs": "aragon run --files dist",
"start:template": "aragon run --files dist --template RewardTemplate --template-init 0x5d94e3e7aec542ab0f9129b9a7badeb5b3ca0f77 @ARAGON_ENS 0xd526b7aba39cccf76422835e7fd5327b98ad73c9 0xf1f8aac64036cdd399886b1c157b7e3b361093f3 --template-new-instance newTokenAndInstance --template-args MyToken TKN ['\"0xb4124cEB3451635DAcedd11767f004d8a28c6eE7\"'] ['\"1000000000000000000\"'] ['\"500000000000000000\",\"150000000000000000\",\"86400\"']",
"start:judge": "cd apps/judge && npm start",
"start:dev": "DEV=true node_modules/@aragon/test-helpers/ganache-cli.sh",
"start:no:client": "NO_CLIENT=true node_modules/@aragon/test-helpers/ganache-cli.sh",
"start:rpc": "npm run start:template",
"start:staging": "lerna run --scope='@porton/apps-*' start:staging --stream",
"start:rinkeby": "lerna run --scope='@porton/apps-*' start:rinkeby --stream",
"start": "npm run start:rpc",
"test:judge": "cd packages/judge && npm test",
"test": "lerna run test --no-bail"
},
"dependencies": {
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/apps-voting": "^2.1.0",
"@aragon/os": "^4.3.0",
"@aragon/templates-shared": "",
"@aragon/apps-shared-minime": "",
"@aragon/test-helpers": "^2.1.0",
"ipfs": "^0.39.0",
"ipfs-http-client": "29.1.0",
"npm": "^6.13.4",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.4.0",
"truffle": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit"
}
},
"build_exclude_pattern": "-e !node_modules -e !**/node_modules/**/*"
}