-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.42 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 4.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@levelk/futarchy-app",
"version": "0.1.5",
"description": "Aragon app for futarchy decisions",
"dependencies": {
"@aragon/api": "2.0.0-beta.8",
"@aragon/apps-shared-minime": "1.0.0",
"@aragon/kits-base": "1.0.0",
"@aragon/os": "4.2.0",
"@aragon/ui": "0.35.1",
"@levelk/pm-contracts": "1.2.0",
"@levelk/token-price-oracles": "0.1.5",
"@levelk/tidbit": "0.1.1",
"bignumber.js": "8.1.1",
"chart.js": "2.8.0",
"decimal.js": "10.1.1",
"ganache-core": "2.2.1",
"lodash": "4.17.13",
"moment": "2.24.0",
"react": "16.8.4",
"react-chartjs-2": "2.7.4",
"react-dom": "16.8.4",
"react-redux": "6.0.1",
"react-router-dom": "4.3.1",
"react-spring": "8.0.15",
"redux": "4.0.1",
"redux-form": "8.1.0",
"redux-thunk": "2.3.0",
"rxjs-compat": "6.4.0",
"styled-components": "4.1.3",
"web3-utils": "1.0.0-beta.50"
},
"devDependencies": {
"@aragon/cli": "5.6.1",
"@aragon/test-helpers": "1.0.1",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.4",
"@babel/register": "7.0.0",
"async": "2.6.2",
"babel-plugin-styled-components": "1.10.0",
"execa": "1.0.0",
"http-server": "0.11.1",
"left-pad": "1.3.0",
"parcel-bundler": "1.12.2"
},
"scripts": {
"deploy:lib_workaround:local": "rm -rf build && npm run compile && truffle exec scripts/deploy_lib.js --network rpc",
"deploy:lib_workaround:rinkeby": "rm -rf build && npm run compile && truffle exec scripts/deploy_lib.js --network rinkeby",
"deploy:lib_workaround:mainnet": "rm -rf build && npm run compile && truffle exec scripts/deploy_lib.js --network mainnet",
"deploy:staging:prepare": "rm -rf build && npm run compile && truffle exec scripts/prepare.js --network rinkeby",
"deploy:staging:publish:major": "node scripts/publish.js staging major",
"deploy:staging:publish:minor": "node scripts/publish.js staging minor",
"deploy:staging:newFutarchyDAO": "truffle exec scripts/newFutarchyDAO.js --network rinkeby --environment staging",
"deploy:local:deps": "truffle exec scripts/deploy_deps.js --network rpc",
"start:aragon": "truffle exec scripts/run.js --network rpc",
"start:aragon:http": "aragon run --http localhost:8001 --http-served-from ./dist",
"start:app:debug": "DEBUG=true npm run start:app",
"start:app": "rm -rf dist/ && npm run sync-assets && npm run build:script -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache",
"start:sandbox": "http-server ./dist",
"devchain": "aragon devchain",
"devchain:reset": "aragon devchain --reset",
"test": "npm run test:contracts && npm run test:app",
"test:contracts": "aragon contracts test",
"test:truffle": "truffle test",
"test:app": "mocha --require app/test/testHelper.js 'app/**/*.test.js'",
"seed": "truffle exec scripts/seed_data/seed.js --network rpc",
"seed:gen": "node scripts/seed_data/genSeedData",
"advance-time": "truffle exec scripts/seed_data/advance_time.js --network rpc",
"compile": "rm -rf build/ && 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",
"dao:new": "aragon dao new",
"dao:install": "aragon dao install",
"dao:acl:create": "aragon dao acl create",
"versions:staging": "aragon apm versions --environment staging",
"info:staging": "aragon apm info futarchy.open.aragonpm.eth --environment staging",
"ipfs": "aragon ipfs",
"ipfs:propagate": "node scripts/ipfs/propagate.js",
"ipfs:propagate:dist": "node scripts/ipfs/propagateDist.js",
"ipfs:archive:staging": "node scripts/ipfs/archive.js staging",
"set:price": "truffle exec scripts/set_data/price.js --network rpc",
"compile:truffle": "truffle compile"
},
"keywords": [],
"main": "truffle.js",
"files": [
"build",
"contracts",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/levelkdev/futarchy-app.git"
},
"author": "@mikec",
"license": "MIT",
"bugs": {
"url": "https://github.com/levelkdev/futarchy-app/issues"
},
"homepage": "https://github.com/levelkdev/futarchy-app#readme"
}