-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
108 lines (108 loc) · 3.17 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
{
"name": "dashboard",
"version": "1.0.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@nivo/bar": "^0.61.1",
"@nivo/generators": "^0.61.0",
"@nivo/line": "^0.61.1",
"@nivo/pie": "^0.62.0",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.2",
"case": "^1.6.3",
"change-case": "^4.1.1",
"emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"i18next": "^19.8.3",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.0.21",
"logrocket": "^1.0.10",
"moment": "^2.24.0",
"moment-timezone": "^0.5.31",
"query-string": "^6.12.1",
"raw.macro": "^0.4.2",
"rc-checkbox": "^2.2.0",
"rc-footer": "^0.6.3",
"react": "^16.13.1",
"react-autosuggest": "^10.0.2",
"react-dom": "^16.13.1",
"react-ga": "^3.1.2",
"react-i18next": "^11.7.3",
"react-infinite-scroll-component": "^5.0.5",
"react-mailchimp-subscribe": "^2.1.0",
"react-map-gl": "^5.2.3",
"react-markdown": "^5.0.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"react-share": "^4.3.1",
"rebass": "^4.0.7",
"remark-gfm": "^1.0.0",
"sanctuary": "^3.0.0",
"styled-components": "^5.1.0",
"theme-ui": "^0.3.1",
"use-query-params": "^1.1.2",
"victory": "^34.1.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "cross-env TZ=UTC react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{js,jsx,css,scss}\"",
"lintfix": "eslint src --ext .js --ext .jsx --fix",
"precommit-msg": "echo 'RUNNING PRE-COMMIT CHECKS...' && exit 0",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/cli": "^5.3.17",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.17",
"@types/axios": "^0.14.0",
"@types/jest": "^25.1.4",
"@types/moment-timezone": "^0.5.13",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"husky": "^4.2.5",
"prettier": "^2.0.2",
"storybook": "^5.3.18"
},
"husky": {
"hooks": {
"pre-commit": "yarn run precommit-msg && yarn run format && yarn run lintfix && git add .",
"pre-push": "CI=true yarn test"
}
}
}