-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "visualify",
"version": "0.1.0",
"private": true,
"dependencies": {
"@jest/globals": "^27.0.6",
"bootstrap": "^5.0.2",
"chart.js": "^3.4.0",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"d3-geo": "^3.0.1",
"d3-geo-projection": "^4.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fs": "0.0.1-security",
"jest-styled-components": "^7.0.4",
"js-cookie": "^3.0.0",
"lodash": "^4.17.20",
"mongodb": "^4.0.1",
"nanoid": "^3.1.22",
"node-fetch": "^2.6.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-bootstrap": "^1.2.2",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"react-modal": "^3.11.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-simple-maps": "^2.1.2",
"react-tooltip": "^4.2.0",
"request": "^2.88.2",
"serve": "^12.0.0",
"styled-components": "^5.1.1",
"styled-media-query": "^2.1.2"
},
"devDependencies": {
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.11.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^17.0.2"
},
"scripts": {
"build": "cd app/frontend && react-scripts build",
"clean": "rm -rf node_modules",
"heroku-postbuild": "npm run build",
"lint": "eslint --quiet --ext js,jsx .",
"lint:fix": "eslint --quiet --ext js,jsx . --fix",
"test": "cd app/frontend && react-scripts test --env=jsdom --watchAll=false"
}
}