forked from aragon/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "aragon",
"description": "Aragon DApp",
"version": "0.5.0",
"private": true,
"license": "GPLv3",
"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]>",
"contributors": [
"Pierre Bertet <[email protected]>"
],
"dependencies": {
"@aragon/ui": "^0.3.0",
"date-fns": "^1.29.0",
"history": "^4.7.2",
"onecolor": "^3.0.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-motion": "^0.5.2"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"prettier": "^1.8.2",
"react-scripts": "1.0.17"
},
"scripts": {
"update-assets": "rm -rf public/aragon-ui && cp -r node_modules/@aragon/ui/dist public/aragon-ui",
"lint": "eslint ./src",
"start": "npm run update-assets && react-scripts start",
"build": "npm run update-assets && PUBLIC_URL=/ react-scripts build",
"test": "npm run lint",
"eject": "react-scripts eject"
}
}