-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.68 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
{
"name": "aragon-token-wrapper",
"version": "0.0.1",
"description": "placeholder-app-description",
"scripts": {
"preinstall": "cd app && npm install && cd ..",
"postinstall": "npm run compile && npm run copy-artifacts && npm run build-app",
"copy-artifacts": "cp -R node_modules/@aragon/abis/os/artifacts/. artifacts/.",
"build-app": "cd app && npm run build && cd ..",
"compile": "buidler compile --force",
"lint": "eslint ./app",
"lint:fix": "eslint ./app --fix",
"test": "buidler test --network buidlerevm",
"start": "buidler start",
"publish:major": "buidler publish major",
"publish:minor": "buidler publish minor",
"publish:patch": "buidler publish patch"
},
"dependencies": {
"@aragon/abis": "^1.1.0",
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/os": "^4.4.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "PeterMPhillips/custom-buidler",
"@aragon/contract-test-helpers": "0.0.1",
"@nomiclabs/buidler": "1.1.2",
"@nomiclabs/buidler-etherscan": "1.1.2",
"@nomiclabs/buidler-truffle5": "1.1.2",
"@nomiclabs/buidler-web3": "1.1.2",
"babel-eslint": "^10.1.0",
"bignumber.js": "^9.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"web3": "1.2.6"
}
}