-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "10-11",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.4",
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"escape-html": "^1.0.3",
"express": "^4.17.3",
"express-rate-limit": "^6.3.0",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-toastify": "^8.2.0"
},
"scripts": {
"heroku-postbuild": "npm run build",
"start": "node index.js",
"lint": "npx eslint \"./src/*.jsx\" \"./*.js\"",
"build": "webpack",
"test": "jest --coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@swc/core": "^1.2.165",
"@swc/jest": "^0.2.20",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.0",
"css-loader": "^6.7.1",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"swc-loader": "^0.2.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
}
}