-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
{
"name": "worden",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev-frontend\" \"npm run dev-server\"",
"dev-frontend": "vite",
"dev-server": "ts-node --experimental-specifier-resolution=node src/server/index.ts",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.4.7",
"@reduxjs/toolkit": "^1.8.5",
"classnames": "^2.3.2",
"http": "^0.0.1-security",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.1",
"sass": "^1.55.0",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"concurrently": "^7.4.0",
"prettier": "2.7.1",
"vite": "^3.1.0"
}
}