-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "tsc --watch --preserveWatchOutput",
"start:dev": "nodemon dist/index.js & webpack -w",
"build": "tsc & webpack",
"start": "node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"express": "^4.19.2",
"mongodb": "^6.7.0",
"postcss-loader": "^8.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-router-dom": "^6.27.0",
"react-select": "^5.8.3",
"shadcn-ui": "^0.9.3",
"slim-select": "^2.9.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"nodemon": "^3.1.0",
"postcss": "^8.4.47",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}