-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 2.94 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
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "sdaqs",
"version": "0.0.0",
"description": "Source-Differentiated Air Quality System",
"main": "app/index.js",
"author": "Ryan Lue <hello@ryanlue.com>",
"private": true,
"scripts": {
"build": "NODE_ENV='production' webpack --config config/webpack.js",
"test": "jest"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"extends": [
"prettier",
"plugin:react/recommended",
"airbnb"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": [
"prettier",
"react"
],
"rules": {
"no-param-reassign": [
"error",
{
"props": false
}
],
"react/jsx-props-no-spreading": "off",
"react/require-default-props": [
"error",
{
"ignoreFunctionalComponents": true
}
]
},
"overrides": [
{
"files": "*.test.jsx",
"rules": {
"no-undef": "off"
}
}
]
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>__test__/enzymeSetup.js"
]
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"assets-webpack-plugin": "^6.1.2",
"autoprefixer": "^10.4.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^6.8.0",
"eslint-config-airbnb": "latest",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.5",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "latest",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^26.6.3",
"postcss": "^8.4.5",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.3.0",
"prettier": "^2.3.2",
"react-test-renderer": "^16.13.1",
"style-loader": "^1.1.3",
"svg-inline-loader": "^0.8.2",
"tailwindcss": "^3.0.7",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-rc.0"
},
"dependencies": {
"antd": "^4.16.11",
"chart.js": "^2.9.4",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-colorschemes": "^0.4.0",
"classnames": "^2.3.1",
"downshift": "^5.2.5",
"fuse.js": "^3.4.6",
"lodash.debounce": "^4.0.8",
"mapbox-gl": "^1.13.1",
"moment": "^2.29.4",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.9.0",
"reactour": "^1.18.6",
"styled-components": "^4",
"uid": "^1.0.0"
}
}