-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 999 Bytes
/
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": "vite-react-typescript-starter",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -w src/server -x tsx src/server/main.ts",
"start": "NODE_ENV=production tsx src/server/main.ts",
"build": "vite build"
},
"dependencies": {
"@flodlc/nebula": "^1.0.56",
"@uidotdev/usehooks": "^2.4.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"react": "^18.2.0",
"react-adobe-animate": "^3.1.0",
"react-dom": "^18.2.0",
"react-icons": "^5.2.1",
"react-player": "^2.16.0",
"react-scroll-parallax": "^3.4.5",
"react-slideshow-image": "^4.3.1",
"styled-components": "^6.1.11",
"tsx": "^4.3.0",
"typescript": "^5.3.2",
"vite-express": "*"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.9.3",
"@types/react": "^18.0.38",
"@types/react-dom": "^18.2.16",
"@vitejs/plugin-react": "^4.2.0",
"nodemon": "^3.0.1",
"vite": "^5.0.2"
}
}