-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.14 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
{
"name": "app-name",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/apps-token-manager": "^2.0.0-beta.2",
"@aragon/client": "^1.0.0-beta.8",
"@aragon/os": "^4.0.0-beta.1",
"@aragon/ui": "^0.18.1",
"abi-decoder": "^1.2.0",
"react": "^16.4.2",
"react-dom": "^16.3.2",
"react-flexbox-grid": "^2.1.2",
"styled-components": "^3.4.6",
"truffle-hdwallet-provider": "0.0.6",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"@aragon/aragen": "^2.0.0-beta.1",
"@aragon/cli": "git://github.com/aragon/aragon-cli.git#master",
"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",
"truffle": "^4.1.14"
},
"scripts": {
"which": "which aragon",
"ganache": "ganache-cli --db node_modules/@aragon/aragen/aragon-ganache -m \"explain tackle mirror kit van hammer degree position ginger unfair soup bonus\" -i 15 -l 100000000",
"start": "aragon run --app-init initialize",
"start:ui": "./node_modules/parcel-bundler/bin/cli.js app/index.html",
"start:app": "npm run sync-assets && npm run build:script -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache",
"start:aragon:http": "aragon run --app-init-args \"0xbcfddf0fb6a918cb1e5040b9f0f529cbb930e23a\" \"0x97d0cab15baac862aa32679562e02200d2abe0fa\" --http localhost:8001 --http-served-from ./dist",
"start:aragon:http:kit": "aragon run --kit Kit --kit-init \"0x5f6f7e8cc7346a11ca2def8f827b7a0b612c56a1\" --http localhost:8001 --http-served-from ./dist",
"test": "aragon contracts test",
"compile": "aragon contracts compile",
"sync-assets": "mkdir -p dist; rsync -rtu \"$(dirname $(node -p 'require.resolve(\"@aragon/ui\")'))/\" dist/aragon-ui",
"build:app": "parcel build app/index.html -d dist/ --public-url '.'",
"build:script": "parcel build app/script.js -d dist/",
"build": "npm run compile && npm run sync-assets && npm run build:app && npm run build:script",
"publish": "aragon publish"
},
"keywords": [],
"license": "MIT"
}