forked from aragon/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.79 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
{
"name": "aragon",
"description": "Aragon DApp",
"version": "0.7.0",
"private": true,
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/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 <[email protected]>",
"dependencies": {
"@aragon/templates-tokens": "^1.2.0",
"@aragon/ui": "^0.37.0",
"@aragon/wrapper": "^5.0.0-rc.5",
"@babel/polyfill": "^7.0.0",
"bn.js": "4.11.6",
"date-fns": "2.0.0-alpha.22",
"eth-provider": "^0.2.0",
"history": "^4.7.2",
"lodash.memoize": "^4.1.2",
"lodash.throttle": "^4.1.1",
"lodash.uniqby": "^4.7.0",
"onecolor": "^3.0.5",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-blockies": "^1.3.0",
"react-container-dimensions": "^1.3.3",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.3",
"react-onclickout": "^2.0.8",
"react-spring": "^7.2.10",
"react-with-gesture": "^4.0.4",
"remark": "^10.0.1",
"remark-react": "^5.0.1",
"resolve-pathname": "^3.0.0",
"styled-components": "^4.1.3",
"underscore": "1.8.3",
"web3": "1.0.0-beta.33",
"web3-utils": "1.0.0-beta.33"
},
"devDependencies": {
"@aragon/cli": "^5.4.0-beta.1",
"@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-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": {
"ui-assets": "copy-aragon-ui-assets -n aragon-ui ./build",
"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",
"build": "node scripts/build",
"build:mainnet": "cross-env REACT_APP_ETH_NETWORK_TYPE=main ARAGON_DEMO_DAO=0x8A83D4bCE45b4C4F751f76cf565953D1E4A3BF0a npm run build",
"build:mainnet-infura": "cross-env REACT_APP_DEFAULT_ETH_NODE=wss://mainnet.infura.io/_ws npm run build:mainnet",
"build:rinkeby": "cross-env ARAGON_DEMO_DAO=0xB578FbBFB8f3268FB1445bf3C0dF42343Da90748 npm run build",
"build:staging": "cross-env REACT_APP_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm run build",
"lint": "eslint ./src",
"test": "npm run lint",
"publish:major": "aragon apm publish major --only-content --files build/",
"publish:minor": "aragon apm publish minor --only-content --files build/",
"publish:patch": "aragon apm publish patch --only-content --files build/",
"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: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"
},
"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"
]
}
}