-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
{
"name": "polis-client-admin",
"version": "0.0.1",
"repository": "github:pol-is/polisClientAdmin",
"description": "Polis Admin Console",
"scripts": {
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"analyze": "webpack --mode=production --analyze",
"dev": "webpack-dev-server --mode=development",
"build": "npm run build:prod",
"start": "npm run dev",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "jest"
},
"author": "Colin Megill",
"devDependencies": {
"@babel/core": "~7.16.0",
"@babel/plugin-proposal-class-properties": "~7.13.0",
"@babel/plugin-proposal-decorators": "~7.13.5",
"@babel/plugin-transform-runtime": "~7.13.7",
"@babel/preset-env": "~7.16.11",
"@babel/preset-react": "~7.16.7",
"@mdx-js/loader": "~1.6.22",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.2.5",
"babel-plugin-lodash": "~3.3.4",
"bluebird": "~3.7.2",
"compression-webpack-plugin": "~7.1.2",
"copy-webpack-plugin": "~9.0.1",
"eslint": "~7.20.0",
"eslint-config-prettier": "~8.1.0",
"eslint-config-standard": "~16.0.2",
"eslint-plugin-babel": "~5.3.1",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~3.1.4",
"eslint-plugin-promise": "~4.3.1",
"eslint-plugin-react": "~7.22.0",
"eslint-plugin-standard": "~4.0.2",
"event-hooks-webpack-plugin": "~2.2.0",
"glob": "~7.1.6",
"html-webpack-plugin": "~5.5.0",
"lodash-webpack-plugin": "~0.11.6",
"mri": "~1.2.0",
"prettier": "~2.2.1",
"prettier-config-standard": "~4.0.0",
"serve": "~11.3.2",
"webpack-bundle-analyzer": "~4.4.0",
"webpack-dev-server": "~4.6.0",
"webpack": "~5.75.0",
"webpack-cli": "~5.0.1"
},
"dependencies": {
"d3-scale": "~3.2.3",
"jquery": "~2.1.4",
"lodash": "~4.17.21",
"prop-types": "~15.7.2",
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-easy-emoji": "~1.8.1",
"react-redux": "7.2.2",
"react-router-dom": "~5.2.0",
"redux": "~4.0.5",
"redux-thunk": "~2.3.0",
"theme-ui": "~0.3.5",
"victory": "~35.4.11"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": "src/**/*.js",
"coverageReporters": [
"json",
"lcov",
"text-summary"
]
}
}