-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.15 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
{
"name": "app-name",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/apps-token-manager": "^1.0.0",
"@aragon/apps-voting": "^1.0.0",
"@aragon/os": "3.1.9",
"@aragon/client": "^1.0.0-beta.8",
"@aragon/ui": "^0.11.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"styled-components": "^3.2.6"
},
"devDependencies": {
"@aragon/cli": "^4.0.6",
"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.0.5"
},
"scripts": {
"start": "aragon run",
"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 sync-assets && npm run build:app && npm run build:script",
"publish": "aragon publish"
},
"keywords": [],
"license": "GPL-3.0"
}