-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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": "ilwol-booking",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "concurrently -g \"npm:dev-server\" \"npm:dev-client\"",
"dev-client": "vite --open",
"dev-server": "nodemon backend/server",
"seed-data": "node backend/seeder",
"start": "node backend/server",
"build": "npm install && vite build --mode production --emptyOutDir",
"deploy-staging": "vite build --mode staging --emptyOutDir && gh-pages -d dist",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.0",
"@reduxjs/toolkit": "^1.9.5",
"bcrypt": "^5.1.1",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"googleapis": "^129.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-calendar": "^4.6.0",
"react-dom": "^18.2.0",
"react-naver-maps": "^0.1.3",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"rotating-file-stream": "^3.1.1",
"solapi": "^5.2.4",
"use-immer": "^0.9.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.45.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"gh-pages": "^6.0.0",
"nodemon": "^3.0.1",
"sass-embedded": "^1.83.0",
"vite": "^5.4.5"
}
}