This repository has been archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.78 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
{
"name": "climate-article-vis",
"version": "2.0.3",
"author": "Daniel Marczin <[email protected]>",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.15.5",
"chart.js": "^3.2.1",
"chartjs-adapter-date-fns": "^2.0.0",
"date-fns": "^2.21.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-force-graph-2d": "^1.18.1",
"react-force-graph-3d": "^1.18.8",
"react-scripts": "4.0.3",
"styled-components": "^5.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"postbuild": "purgecss --config ./purgecss.config.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "react-scripts build --stats && npx webpack-bundle-analyzer ./build/bundle-stats.json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"babel-plugin-styled-components": "^1.12.0",
"canvas": "^2.7.0",
"eslint-config-prettier": "^8.3.0",
"glob-all": "^3.2.1",
"husky": "^4.3.5",
"lint-staged": "^11.0.0",
"prettier": "2.3.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"resolutions": {
"styled-components": "^5"
}
}