-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
104 lines (104 loc) · 2.84 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
{
"name": "maker-governance-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.0.1",
"@babel/runtime": "^7.7.0",
"@material-ui/core": "^4.7.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.3",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.12",
"apollo-link-error": "^1.1.11",
"apollo-link-http": "^1.5.15",
"apollo-link-ws": "^1.0.18",
"array-flat-polyfill": "^1.0.1",
"bignumber.js": "^9.0.0",
"clipboard-copy": "^3.1.0",
"date-fns": "^2.1.0",
"date-fns-tz": "^1.0.7",
"dotenv-flow": "^3.1.0",
"fetch": "^1.1.0",
"gini": "^1.1.7",
"graphql": "^14.5.4",
"graphql-request": "^1.8.2",
"graphql-tag": "^2.10.1",
"gray-matter": "^4.0.2",
"install": "^0.13.0",
"ipfs-only-hash": "^1.0.2",
"localforage": "^1.7.3",
"lscache": "^1.3.0",
"match-sorter": "^4.0.2",
"npm": "^6.11.3",
"randomcolor": "^0.5.4",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hamburger-menu": "^1.1.1",
"react-markdown": "^4.2.2",
"react-modal": "^3.10.1",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.2.0",
"react-table": "7.0.0-alpha.34",
"react-tooltip": "^3.11.1",
"recharts": "^1.7.1",
"sanitize.css": "^11.0.0",
"save-as-file": "^0.2.0",
"styled-components": "^4.3.2",
"subscriptions-transport-ws": "^0.9.16",
"typescript": "3.6.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-fragment": "API_URI=https://api.thegraph.com/subgraphs/name/lmcorbalan/makerdao-governance node src/schemaQuery.js",
"test": "react-scripts test --passWithNoTests",
"eject": "react-scripts eject",
"generateGQLTypes": "node scripts/generateGQLTypes.js"
},
"eslintConfig": {
"extends": "react-app"
},
"proxy": "https://gov-db.makerfoundation.com",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn generateGQLTypes && git add ./src/types/generatedGQL.ts && yarn tsc && lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,json,graphql,md}": [
"prettier --write",
"git add"
],
"scr/**/*.{ts, tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"apollo": "^2.18.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"husky": "^3.0.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2"
}
}