-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.28 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.28 KB
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
{
"name": "crud-using-rest-api",
"version": "0.1.0",
"private": true,
"dependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@date-io/date-fns": "^1.3.13",
"@reduxjs/toolkit": "^2.2.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.7",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-styled-components": "^2.1.4",
"browserify-zlib": "^0.2.0",
"core-js": "^3.36.0",
"date-fns": "^3.3.1",
"dotenv": "^16.3.1",
"enzyme": "^3.11.0",
"jest-fetch-mock": "^3.0.3",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"react": "^18.2.0",
"react-date-range": "^2.0.0-alpha.4",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.2",
"react-scripts": "5.0.1",
"use-dark-mode": "^2.3.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "cross-env NODE_ENV=development NODE_OPTIONS=--trace-deprecation webpack-dev-server",
"build": "cross-env NODE_ENV=production CI=false && react-scripts build webpack",
"winBuild": "cross-env NODE_ENV=production set \"GENERATE_SOURCEMAP=false\" \"CI=false\" && react-scripts build",
"test": "jest --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src",
"webpack": "webpack"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-react-constant-elements": "^7.23.3",
"@babel/plugin-transform-react-inline-elements": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/runtime": "^7.23.9",
"@sanity/eslint-config-studio": "^3.0.1",
"@testing-library/react": "^14.2.1",
"ajv": "^7.2.4",
"babel-cli": "^6.26.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.36.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.5.4",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.1.0",
"sass": "^1.70.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"url-loader": "^4.1.1",
"webpack": "^5.89.0",
"webpack-clean-obsolete-chunks": "^0.4.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}