forked from AutarkLabs/open-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 2.26 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
{
"private": true,
"name": "planning-app-monorepo",
"devDependencies": {
"coveralls": "3.0.2",
"lerna": "^3.4.3"
},
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"postinstall": "npm run bootstrap",
"clean": "git clean -ffdx",
"clean:commit": "rm -f package-lock.json && npm run bootstrap",
"clean:aragon": "rm -rf ~/.aragon && rm -rf ~/.ipfs",
"clean:build": "git clean -ffdx --exclude=node_modules/",
"coverage": "npx lerna run coverage --no-bail",
"coveralls": "cat apps/*/coverage/lcov.info | npx coveralls",
"dev": "apps/shared/test-helpers/develop-kit.sh",
"dev:address": "cd apps/address-book && npm run dev",
"dev:allocations": "cd apps/allocations && npm run dev",
"dev:projects": "cd apps/projects && npm run dev",
"dev:range": "cd apps/range-voting && npm run dev",
"devchain": "aragon devchain",
"devchain:reset": "aragon devchain --reset",
"publish:apps": "lerna run publish",
"publish:http": "lerna run publish:http",
"restart": "RESTART_KIT=true apps/shared/test-helpers/ganache-cli.sh",
"start": "START_KIT=true apps/shared/test-helpers/ganache-cli.sh",
"start:dev": "DEV=true apps/shared/test-helpers/ganache-cli.sh",
"start:kit": "cd apps/planning-app-kit && npm run start:kit",
"start:address": "cd apps/address-book && npm start",
"start:allocations": "cd apps/allocations && npm start",
"start:projects": "cd apps/projects && npm start",
"start:range": "cd apps/range-voting && npm start",
"test": "lerna run test --no-bail",
"test:gas": "lerna run test:gas",
"test:address": "cd apps/address-book && npm test",
"test:allocations": "cd apps/allocations && npm test",
"test:projects": "cd apps/projects && npm test",
"test:range": "cd apps/range-voting && npm test",
"lint": "lerna run lint --no-bail && lerna exec --scope=@tpt/apps-* --stream -- npx eslint app",
"lint:fix": "lerna exec --scope=@tpt/apps-* --stream -- npx eslint app --fix",
"lint:address": "cd apps/address-book && npm run lint",
"lint:allocations": "cd apps/allocations && npm run lint",
"lint:projects": "cd apps/projects && npm run lint",
"lint:range": "cd apps/range-voting && npm run lint"
},
"dependencies": {
"@aragon/cli": "5.0.0"
}
}