-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
29 lines (29 loc) · 815 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
{
"name": "parcel-typescript-react-tailwind",
"version": "4.0.0",
"license": "MIT",
"description": "Trying-out Tailwind CSS with Parcel",
"scripts": {
"dev": "parcel serve src/index.html -p 8080 --open",
"build": "parcel build --dist-dir dist src/index.html",
"clean": "rm -rf .parcel-cache dist",
"serve": "pnpx serve dist",
"start": "pnpm clean && pnpm build && pnpm serve"
},
"devDependencies": {
"@parcel/transformer-image": "2.12.0",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"autoprefixer": "10.4.20",
"parcel": "2.12.0",
"postcss": "8.4.49",
"process": "0.11.10",
"typescript": "5.7.3"
},
"dependencies": {
"postcss-import": "16.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwindcss": "3.4.17"
}
}