-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1019 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1019 Bytes
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
{
"name": "flowbite-react-template-parcel-server",
"private": true,
"version": "0.0.0",
"server": "dist/server.js",
"targets": {
"server": {
"source": "src/server.tsx",
"context": "react-server",
"includeNodeModules": {
"express": false
}
}
},
"scripts": {
"start": "parcel",
"build": "parcel build",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"dependencies": {
"@parcel/rsc": "^2.15.4",
"express": "^5.1.0",
"flowbite-react": "^0.12.4",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@parcel/transformer-inline-string": "^2.15.4",
"@tailwindcss/postcss": "^4.1.11",
"@types/express": "^5.0.3",
"@types/node": "^24.0.15",
"@types/parcel-env": "^0.0.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"parcel": "^2.15.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11"
}
}