forked from 1Hive/aragon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 6.19 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "aragon",
"description": "Aragon client",
"version": "1.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"author": "Aragon Association <legal@aragon.org>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aragon/aragon.git"
},
"bugs": {
"url": "https://github.com/aragon/aragon/issues"
},
"homepage": "https://github.com/aragon/aragon#readme",
"keywords": [
"aragon",
"ethereum",
"dapp",
"blockchain",
"startups"
],
"engines": {
"node": ">= 10.0.0"
},
"bundlewatch": {
"files": [
{
"path": "public/*.js",
"maxSize": "1600kb",
"compression": "gzip"
}
]
},
"dependencies": {
"@aragon/templates-tokens": "^1.2.1",
"@aragon/ui": "^1.9.3",
"@aragon/v2-migrator-script": "^0.1.9",
"@aragon/wrapper": "^5.5.1",
"@elastic/apm-rum": "^5.9.1",
"@elastic/apm-rum-core": "^5.12.1",
"@elastic/apm-rum-react": "^1.3.1",
"@ungap/event-target": "^0.1.0",
"clipboard-polyfill": "^2.8.6",
"core-js": "^3.3.2",
"dayjs": "^1.8.28",
"decimal.js": "^10.2.0",
"dotenv": "^8.2.0",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.4.4",
"file-saver": "^2.0.1",
"history": "^4.9.0",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"lodash.throttle": "^4.1.1",
"lodash.uniqby": "^4.7.0",
"network-config": "^3.0.0",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.3",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-spring": "^7.2.10",
"react-use-gesture": "^5.2.4",
"regenerator-runtime": "^0.13.3",
"resolve-pathname": "^3.0.0",
"scrypt": "github:barrysteyn/node-scrypt#fb60a8d3c158fe115a624b5ffa7480f3a24b03fb",
"secp256k1": "^4.0.2",
"styled-components": "^4.1.3",
"use-wallet": "^0.12.2",
"web3": "^1.5.2",
"web3-eth-abi": "^1.5.2",
"web3-utils": "^1.5.2"
},
"devDependencies": {
"@aragon/os": "^4.0.0",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"babel-plugin-styled-components": "^1.10.6",
"bundlewatch": "^0.2.6",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.19.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-hooks": "^1.6.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.0.1",
"jest": "^25.1.0",
"lint-staged": "^8.1.1",
"parcel-bundler": "^1.10.1",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^1.19.1",
"ps-node": "^0.1.6",
"rimraf": "^2.6.2"
},
"resolutions": {
"@aragon/wrapper/web3": "1.2.6",
"@aragon/wrapper/web3-eth-abi": "1.2.6"
},
"scripts": {
"bundlewatch": "bundlewatch",
"start": "node scripts/start",
"start:local": "node scripts/launch-local",
"start:mainnet": "cross-env ARAGON_ETH_NETWORK_TYPE=main npm start",
"start:rinkeby": "npm start",
"start:staging": "cross-env ARAGON_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm start",
"start:ropsten": "cross-env ARAGON_ETH_NETWORK_TYPE=ropsten npm start",
"start:xdai": "cross-env ARAGON_ETH_NETWORK_TYPE=xdai npm start",
"build": "node scripts/build",
"build:local": "node scripts/build-local",
"build:mainnet": "cross-env ARAGON_ETH_NETWORK_TYPE=main npm run build",
"build:rinkeby": "npm run build",
"build:staging": "cross-env ARAGON_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm run build",
"build:ropsten": "cross-env ARAGON_ETH_NETWORK_TYPE=ropsten npm run build",
"build:xdai": "cross-env ARAGON_ETH_NETWORK_TYPE=xdai npm run build",
"lint": "eslint ./src",
"test": "npm run lint && npm run jest",
"jest": "jest",
"publish:major": "node scripts/publish major --only-content --files public/",
"publish:minor": "node scripts/publish minor --only-content --files public/",
"publish:patch": "node scripts/publish patch --only-content --files public/",
"publish:mainnet:major": "npm run publish:major -- --environment mainnet --build-script build:mainnet",
"publish:mainnet:minor": "npm run publish:minor -- --environment mainnet --build-script build:mainnet",
"publish:mainnet:patch": "npm run publish:patch -- --environment mainnet --build-script build:mainnet",
"publish:rinkeby:major": "npm run publish:major -- --environment rinkeby --build-script build:rinkeby",
"publish:rinkeby:minor": "npm run publish:minor -- --environment rinkeby --build-script build:rinkeby",
"publish:rinkeby:patch": "npm run publish:patch -- --environment rinkeby --build-script build:rinkeby",
"publish:staging:major": "npm run publish:major -- --environment staging --build-script build:staging",
"publish:staging:minor": "npm run publish:minor -- --environment staging --build-script build:staging",
"publish:staging:patch": "npm run publish:patch -- --environment staging --build-script build:staging",
"publish:ropsten:major": "npm run publish:major -- --environment ropsten --build-script build:ropsten",
"publish:ropsten:minor": "npm run publish:minor -- --environment ropsten --build-script build:ropsten",
"publish:ropsten:patch": "npm run publish:patch -- --environment ropsten --build-script build:ropsten"
},
"browserslist": {
"development": ">2%, last 1 edge versions, not ie > 0, not op_mini all",
"production": ">2%, last 1 edge versions, not ie > 0, not op_mini all"
},
"husky": {
"hooks": {
"pre-push": "npm test",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"moduleNameMapper": {
"\\.(svg|png)$": "<rootDir>/src/test/empty-string.js"
},
"moduleDirectories": [
"<rootDir>/node_modules"
]
}
}