-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.29 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
{
"name": "DAppWall",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/api": "^2.0.0-beta.4",
"@aragon/client": "^1.1.0",
"@aragon/os": "^4.0.1",
"fs": "0.0.1-security",
"node-fetch": "^2.6.0",
"ps-node": "^0.1.6",
"shelljs": "^0.8.3",
"web3": "^1.2.1"
},
"devDependencies": {
"@aragon/cli": "^5.4.0",
"@babel/polyfill": "^7.2.5",
"babel-polyfill": "^6.26.0",
"parcel-bundler": "^1.11.0"
},
"scripts": {
"build": "parcel build app/script.js -d dist/ && parcel build app/index.html -d dist/ --public-url \".\"",
"start:app": "npm run build -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache",
"start:aragon:http": "npx aragon run --http localhost:8001 --http-served-from ./dist",
"start": "npm run start:ipfs",
"start:ipfs": "aragon run",
"start:http": "aragon run --http localhost:8001 --http-served-from ./dist",
"start:ipfs:template": "npm run start:ipfs -- --template Template --template-init @ARAGON_ENS",
"start:http:template": "npm run start:http -- --template Template --template-init @ARAGON_ENS",
"prepare": "cd app && npm install && cd ..",
"start:frontend": "cd app && npm start && cd ..",
"test": "cross-env TRUFFLE_TEST=true npm run ganache-cli:test"
}
}