-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
103 lines (103 loc) · 3.32 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
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
{
"name": "@aragon/apps-allocations",
"version": "0.0.1",
"description": "Allocations app from Planning Suite",
"homepage": "https://github.com/aragon/aragon-apps/tree/master/apps/allocations",
"scripts": {
"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",
"compile": "hardhat compile",
"copy-public-assets": "rsync -rtu ./public/ ./dist",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"frontend": "npm run sync-assets && parcel app/index.html --port 2222",
"ganache-cli:test": "../shared/test-helpers/ganache-cli.sh",
"lint": "solium --dir ./contracts",
"precommit": "lint-staged",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist && npm run copy-public-assets",
"test:gas": "echo GAS_REPORTER=true npm test",
"test": "echo cross-env TRUFFLE_TEST=true npm run ganache-cli:test"
},
"files": [
"contracts/",
"manifest.json",
"arapp.json"
],
"dependencies": {
"@aragon/api": "2.0.0-beta.8",
"@aragon/api-react": "2.0.0-beta.8",
"@aragon/apps-vault": "4.1.0",
"@aragon/os": "4.2.0",
"@aragon/ui": "1.0.0",
"@babel/polyfill": "^7.2.5",
"bignumber.js": "^7.2.1",
"date-fns": "2.0.0-alpha.22",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "4.1.3",
"web3-utils": "^1.0.0"
},
"devDependencies": {
"@aragon/apps-shared-minime": "1.0.1",
"@aragon/hardhat-aragon": "^1.0.0",
"@aragon/hardhat-config": "^1.0.1",
"@aragon/test-helpers": "^2.0.0",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.10.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"eth-gas-reporter": "0.1.12",
"ethereumjs-abi": "0.6.5",
"ethers": "^5.4.7",
"ganache-cli": "6.1.8",
"hardhat": "^2.6.5",
"homedir": "^0.6.0",
"lint-staged": "^9.2.0",
"parcel-bundler": "1.12.3",
"prettier-eslint": "^9.0.0",
"react-axe": "^3.0.1",
"react-hot-loader": "^4.12.7",
"solidity-coverage": "0.5.11",
"solium": "1.1.8",
"stylelint": "^9.5.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.7.0"
},
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/aragon/aragon-apps"
},
"keywords": [],
"license": "GPL-3.0",
"lint-staged": {
"*.js": [
"eslint --fix",
"stylelint --fix",
"git add"
]
},
"browserslist": [
">2%",
"last 1 edge versions",
"not ie > 0",
"not op_mini all"
]
}