-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 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
75
76
{
"name": "runway-admin",
"description": "런웨이 어드민",
"version": "1.0.0",
"homepage": ".",
"repository": {
"type": "git"
},
"license": "Only use for softsquared project",
"scripts": {
"build-dev": "dotenv -e .env.development react-scripts build",
"build-stage": "dotenv -e .env.stage react-scripts build",
"build-prod": "dotenv -e .env.production react-scripts build",
"start": "react-scripts start",
"prepare": "husky install"
},
"dependencies": {
"@coreui/coreui": "4.2.1",
"@coreui/icons": "2.1.0",
"@coreui/icons-react": "2.0.1",
"@coreui/react": "4.3.1",
"@emotion/react": "^11.10.6",
"@mantine/core": "^6.0.4",
"@mantine/dates": "^6.0.2",
"@mantine/hooks": "^6.0.4",
"@tabler/icons-react": "^2.10.0",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"axios": "0.26.1",
"classnames": "^2.3.1",
"core-js": "3.21.1",
"dayjs": "^1.11.7",
"dotenv-cli": "5.1.0",
"moment": "2.29.1",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-app-polyfill": "3.0.0",
"react-datetime-picker": "^5.5.1",
"react-daum-postcode": "^3.1.1",
"react-dom": "17.0.2",
"react-redux": "7.2.6",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "6.2.2",
"react-select": "5.2.2",
"recoil": "^0.7.6",
"redux": "4.1.2",
"simplebar-react": "2.3.6",
"styled-components": "5.3.5"
},
"devDependencies": {
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.5.1",
"react-scripts": "5.0.0",
"sass": "1.49.9",
"typescript": "^4.8.2"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,html}": [
"prettier --write .",
"eslint --fix src/"
]
},
"proxy": "https://prod.match-api-server.com"
}