forked from aragon/client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 5.25 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 5.25 KB
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
{
"name": "aragon",
"description": "Aragon DApp",
"version": "0.8.0-hotfix",
"private": true,
"license": "AGPL-3.0-or-later",
"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"
],
"author": "Aragon Institution MTU <contact@aragon.one>",
"engines": {
"node": "10.x"
},
"dependencies": {
"@aragon/templates-tokens": "^1.2.1",
"@aragon/ui": "^1.0.0-alpha.26",
"@aragon/wrapper": "^5.0.0-rc.17",
"@babel/polyfill": "^7.0.0",
"@sentry/browser": "^5.5.0",
"@ungap/event-target": "^0.1.0",
"date-fns": "2.0.0-alpha.22",
"eth-provider": "^0.2.0",
"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",
"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-spring": "^7.2.10",
"react-use-gesture": "^5.2.4",
"remark": "^10.0.1",
"remark-react": "^5.0.1",
"resolve-pathname": "^3.0.0",
"styled-components": "^4.1.3",
"web3": "^1.2.1",
"web3-utils": "^1.2.1"
},
"devDependencies": {
"@aragon/os": "^4.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-styled-components": "^1.7.1",
"cross-env": "^5.2.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.7.0",
"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",
"lint-staged": "^8.1.1",
"parcel-bundler": "^1.10.1",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"prettier": "^1.15.0",
"ps-node": "^0.1.6",
"rimraf": "^2.6.2"
},
"scripts": {
"start": "node scripts/start",
"start:local": "node scripts/launch-local",
"start:mainnet": "cross-env REACT_APP_ETH_NETWORK_TYPE=main npm start",
"start:rinkeby": "npm start",
"start:staging": "cross-env REACT_APP_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm start",
"start:ropsten": "cross-env REACT_APP_ETH_NETWORK_TYPE=ropsten npm start",
"build": "node scripts/build",
"build:local": "node scripts/build-local",
"build:mainnet": "cross-env REACT_APP_ETH_NETWORK_TYPE=main ARAGON_DEMO_DAO=0x8A83D4bCE45b4C4F751f76cf565953D1E4A3BF0a npm run build",
"build:rinkeby": "cross-env ARAGON_DEMO_DAO=0xB578FbBFB8f3268FB1445bf3C0dF42343Da90748 npm run build",
"build:staging": "cross-env REACT_APP_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm run build",
"build:ropsten": "cross-env REACT_APP_ETH_NETWORK_TYPE=ropsten npm run build",
"lint": "eslint ./src",
"test": "npm run lint",
"now-build": "npm run build:mainnet -- build && npm run build -- build/rinkeby",
"publish:major": "node scripts/publish major --only-content --files build/",
"publish:minor": "node scripts/publish minor --only-content --files build/",
"publish:patch": "node scripts/publish patch --only-content --files build/",
"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"
]
}
}