-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1004 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
{
"name": "piworker",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build:css": "tailwindcss -i ./src/client/styles.css -o ./public/dist/styles.css",
"build:js": "esbuild src/client/index.tsx --bundle --outdir=./public/dist --format=esm --splitting --sourcemap",
"start": "wrangler dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"wrangler": "^3.87.0"
},
"dependencies": {
"react": "^19.0.0-rc.1",
"react-dom": "^19.0.0-rc.1"
}
}