-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) ยท 2.27 KB
/
package.json
File metadata and controls
81 lines (81 loc) ยท 2.27 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
{
"name": "jandy_web_front",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.3.0",
"@fontsource/barlow": "^4.5.0",
"@fontsource/noto-sans-kr": "^4.5.1",
"@material-ui/core": "5.0.0-alpha.32",
"@material-ui/docs": "5.0.0-alpha.31",
"@material-ui/icons": "5.0.0-alpha.29",
"@material-ui/lab": "^5.0.0-alpha.44",
"@material-ui/styled-engine": "5.0.0-alpha.26",
"@material-ui/styled-engine-sc": "5.0.0-alpha.26",
"@material-ui/styles": "5.0.0-alpha.32",
"@material-ui/system": "5.0.0-alpha.31",
"@toast-ui/editor": "^3.0.3",
"@toast-ui/react-editor": "^3.1.0",
"axios": "^0.21.1",
"cross-env": "^7.0.3",
"http-proxy-middleware": "^2.0.0",
"json-server": "^0.16.3",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-helmet-async": "^1.0.9",
"react-hook-form": "^7.12.1",
"react-images-uploading": "^3.1.3",
"react-intersection-observer": "^8.32.1",
"react-kakao-login": "^2.1.0",
"react-loading": "^2.0.3",
"react-modal": "^3.14.3",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"redux": "^4.1.0",
"redux-actions": "^2.6.5",
"redux-logger": "^3.0.6",
"redux-pender": "^2.0.12",
"redux-saga": "^1.1.3",
"socket.io-client": "^4.1.3"
},
"scripts": {
"start": "react-scripts start",
"start:server": "npx json-server ./data.json --port 4002",
"build": "cross-env GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint": "eslint src/**/*.jsx"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.jsx": [
"eslint --fix",
"prettier --write"
]
}
}