forked from cslarson/airdrop-app
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 2.81 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
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
{
"name": "@cslarson/airdrop",
"version": "0.0.10",
"description": "",
"dependencies": {
"@aragon/api": "^2.0.0-beta.6",
"@aragon/api-react": "^2.0.0-beta.6",
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/os": "^4.3.0",
"@aragon/templates-shared": "^1.0.0",
"@aragon/ui": "^1.0.0-alpha.28",
"@daonuts/token": "^0.0.6",
"bignumber.js": "^9.0.0",
"core-js": "^3.1.4",
"csvtojson": "^2.0.10",
"ethereumjs-util": "^6.1.0",
"ipfs-http-client": "^32.0.1",
"merkle-tree-solidity": "daonuts/merkle-tree-solidity#master",
"multihashes": "^0.4.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"rxjs": "^6.5.2",
"styled-components": "^4.3.2",
"truffle": "^5.1.4"
},
"devDependencies": {
"@aragon/apps-shared-migrations": "^1.0.0",
"@aragon/cli": "7.0.3",
"@aragon/test-helpers": "^1.1.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"homedir": "^0.6.0",
"parcel-bundler": "^1.12.3",
"truffle-extract": "^1.2.1"
},
"scripts": {
"start": "aragon run",
"start:template": "npm run start -- --template Template --template-init @ARAGON_ENS --files dist",
"start:http": "aragon run --http localhost:1234 --http-served-from ./dist",
"start:http:template": "npm run start:http -- --template Template --template-init @ARAGON_ENS 0x85e74AD022E16fae4ed7c257370E19617d9A1A85",
"test": "aragon contracts test",
"compile": "aragon contracts compile",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist && rsync -rtu ./app/public/ ./dist",
"build:app": "parcel build app/index.html -d dist/ --public-url '.' --no-cache",
"build:script": "parcel build app/src/script.js -d dist/ --no-cache",
"build": "rm -rf dist && npm run sync-assets && npm run build:app && npm run build:script",
"watch:script": "parcel watch app/src/script.js --out-dir dist/ --no-hmr",
"serve": "parcel serve app/index.html",
"start:client": "npm run watch:script & npm run serve",
"publish:patch": "aragon apm publish patch --files dist --skip-confirmation",
"publish:minor": "aragon apm publish minor --files dist --skip-confirmation",
"publish:major": "aragon apm publish major --files dist --skip-confirmation",
"deploy:template": "aragon deploy Template --init @ARAGON_ENS",
"versions": "aragon apm versions",
"clean": "rm -rf build && rm -rf dist",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"keywords": [],
"files": [
"/abi",
"/arapp.json",
"/app",
"/contracts",
"/test"
],
"author": "Carl Larson <cslarson@gmail.com>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"browserslist": [
"last 2 Chrome versions"
]
}