-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.65 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
{
"name": "app-name",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/apps-shared-minime": "^1.0.0",
"@aragon/apps-token-manager": "^2.0.0-alpha.1",
"@aragon/apps-voting": "^2.0.0-alpha.1",
"@aragon/os": "4.0.0-beta.1",
"@aragon/client": "^1.0.0-beta.9",
"@aragon/ui": "^0.16.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6"
},
"devDependencies": {
"@aragon/cli": "^5.0.0",
"babel-core": "^6.26.3",
"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",
"parcel-bundler": "^1.9.3"
},
"scripts": {
"start": "npm run start:aragon:ipfs",
"start:aragon:ipfs": "aragon run",
"start:aragon:http": "aragon run --http localhost:8001 --http-served-from ./dist",
"start:aragon:ipfs:kit": "npm run start:aragon:ipfs -- --kit Kit --kit-init @ARAGON_ENS",
"start:aragon:http:kit": "npm run start:aragon:http -- --kit Kit --kit-init @ARAGON_ENS",
"start:app": "npm run sync-assets && npm run build:script -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache",
"test": "aragon contracts test",
"compile": "aragon contracts compile",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist",
"build:app": "parcel build app/index.html -d dist/ --public-url '.' --no-cache",
"build:script": "parcel build app/script.js -d dist/ --no-cache",
"build": "npm run sync-assets && npm run build:app && npm run build:script",
"publish": "aragon apm publish"
},
"keywords": [],
"license": "GPL-3.0"
}