-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.64 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": "araswap",
"version": "0.0.1",
"description": "placeholder-app-description",
"scripts": {
"postinstall": "yarn compile && yarn build-app",
"build-app": "cd app && npm install && cd ..",
"compile": "buidler compile --force",
"start": "buidler start",
"test": "buidler test --network buidlerevm",
"test:gas": "GAS_REPORTER=true npm run ganache-cli:test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"ganache-cli:test": "./scripts/ganache-cli.sh",
"publish:major": "buidler publish major",
"publish:minor": "buidler publish minor",
"publish:patch": "buidler publish patch"
},
"dependencies": {
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/os": "^4.4.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "^0.2.7",
"@aragon/contract-test-helpers": "0.0.1",
"@nomiclabs/buidler": "^1.3.2",
"@nomiclabs/buidler-etherscan": "^1.3.2",
"@nomiclabs/buidler-truffle5": "^1.3.2",
"@nomiclabs/buidler-web3": "^1.3.2",
"babel-eslint": "^10.1.0",
"buidler-gas-reporter": "^0.1.3",
"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.2",
"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.4",
"eslint-plugin-standard": "^4.0.1",
"ganache-cli": "^6.9.1",
"prettier": "^2.0.5",
"solidity-coverage": "^0.7.0",
"web3": "^1.2.7"
}
}