forked from makerdao/governance-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.33 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
{
"name": "maker-governance-dashboard",
"description": "The primary interface for dai governance.",
"version": "0.2.7",
"license": "MIT",
"private": true,
"dependencies": {
"@craco/craco": "^3.5.0",
"@makerdao/dai": "^0.16.1",
"@makerdao/dai-plugin-config": "^0.2.7-rc.3",
"@makerdao/dai-plugin-governance": "^0.7.0",
"@makerdao/dai-plugin-ledger-web": "^0.9.7",
"@makerdao/dai-plugin-trezor-web": "^0.9.6",
"@makerdao/ui-components": "1.0.0-alpha.29",
"@makerdao/ui-components-core": "^0.1.4",
"@makerdao/ui-components-onboarding": "0.1.3",
"bignumber.js": "^8.0.1",
"ethers": "^4.0.18",
"gray-matter": "^4.0.2",
"history": "^4.9.0",
"ipfs-only-hash": "^1.0.2",
"jazzicon": "^1.5.0",
"lodash.round": "^4.0.4",
"lodash.uniq": "^4.5.0",
"lodash.uniqby": "^4.7.0",
"mixpanel-browser": "^2.29.0",
"prop-types": "^15.6.2",
"ramda": "^0.26.0",
"raven-js": "^3.27.0",
"react": "^16.6.3",
"react-datetime-picker": "^2.4.0",
"react-dom": "^16.6.3",
"react-ga": "2.5.3",
"react-markdown": "^4.0.3",
"react-mde": "^7.5.0",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-thunk": "^2.3.0",
"showdown": "^1.9.0",
"styled-components": "^3.4.2"
},
"scripts": {
"start": "HTTPS=true NODE_ENV=development craco start",
"build": "craco build",
"now-build": "yarn build",
"deploy": "yarn build && now ./build -A ../now.json",
"test": "jest",
"cover": "jest --coverage",
"eject": "react-scripts eject",
"precommit": "lint-staged",
"remove-sourcemaps": "rm -rf build/static/js/*.map"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --single-quote",
"git add"
]
},
"devDependencies": {
"@babel/helper-create-class-features-plugin": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-styled-components": "^1.8.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint-plugin-promise": "^4.0.1",
"ganache-cli": "^6.2.3",
"husky": "^1.2.0",
"jest-each": "^23.6.0",
"jest-fetch-mock": "^1.7.5",
"lint-staged": "^8.1.0",
"madge": "^3.3.0",
"prettier": "^1.15.2",
"pretty": "^2.0.0",
"redux-mock-store": "^1.5.3",
"webpack-bundle-analyzer": "^3.3.2",
"whatwg-fetch": "^3.0.0"
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(png|svg|md|css)$": "<rootDir>/test/helpers/fileMock.js"
},
"setupFiles": [
"<rootDir>/test/helpers/shimRequestAnimationFrame.js",
"<rootDir>/test/helpers/setup.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}