-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "todomall",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env REACT_APP_NODE_ENV=production GENERATE_SOURCEMAP=false react-scripts start",
"dev": "cross-env REACT_APP_NODE_ENV=development GENERATE_SOURCEMAP=false react-scripts start",
"local": "cross-env REACT_APP_NODE_ENV=local GENERATE_SOURCEMAP=false react-scripts start",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"test": "DISABLE_ESLINT_PLUGIN=true react-scripts test",
"eject": "DISABLE_ESLINT_PLUGIN=true react-scripts eject",
"lint": "eslint --fix --ext .js,.jsx src"
},
"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"
]
},
"dependencies": {
"@apollo/client": "^3.7.4",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.9.1",
"@toast-ui/react-editor": "^3.2.3",
"aws-sdk": "^2.1225.0",
"axios": "^0.27.2",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"dotenv": "^16.0.2",
"emotion": "^11.0.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-progressbar-on-scroll": "^2.0.0",
"react-remove-scroll-bar": "^2.3.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"styled-components": "^5.3.5",
"swiper": "^9.0.5",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@eslint/create-config": "^0.4.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"msw": "^0.49.2",
"prettier": "^2.8.4"
},
"msw": {
"workerDirectory": "public"
}
}