-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.54 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
{
"name": "advanced-stats",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "^10.0.4",
"axios": "^0.21.0",
"connected-react-router": "^6.8.0",
"d3": "^6.3.1",
"dotenv": "^8.2.0",
"history": "4.10.1",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"netlify-lambda": "^2.0.1",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^6.12.2",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"redux-form": "^8.3.7",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"tailwindcss": "^2.0.1",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"depcheck": "^1.3.1",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"npm-run-all": "^4.1.5"
},
"scripts": {
"build:css": "postcss src/styles/index.css -o src/index.css",
"watch:css": "postcss src/styles/index.css -o src/index.css -w",
"start": "run-p start:react start:lambda",
"start:react": "npm run watch:css & react-scripts start",
"start:lambda": "netlify-lambda serve src/lambda",
"build:react": "npm run build:css && react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"build": "npm run build:react && npm run build:lambda",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tidy": "prettier --write 'src/**/*.js'",
"depcheck": "depcheck"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:9000"
}