-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"name": "web",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run backend\"",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"backend": "nodemon backend/main.js"
},
"dependencies": {
"@fluentui/react-carousel-preview": "^0.6.0",
"@fluentui/react-components": "^9.55.1",
"@fluentui/react-icons": "^2.0.264",
"@primer/octicons-react": "^19.12.0",
"@types/eslint": "^9.6.1",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "5.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"typescript-eslint": "^8.13.0",
"vite-plugin-checker": "^0.8.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.1.0",
"eslint": "^9.14.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "~5.6.2",
"vite": "^5.4.10",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-top-level-await": "^1.4.4"
}
}