-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 727 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 727 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
{
"name": "parcel-typescript-react-tailwind",
"version": "3.4.0",
"license": "MIT",
"description": "Trying-out Tailwind CSS with Parcel",
"scripts": {
"start": "parcel serve src/index.html -p 8080 --open",
"build": "parcel build --dist-dir dist src/index.html",
"clean": "rm -rf .parcel-cache dist"
},
"devDependencies": {
"@parcel/transformer-image": "2.9.3",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.15",
"parcel": "2.9.3",
"postcss": "8.4.27",
"process": "0.11.10",
"typescript": "5.1.6"
},
"dependencies": {
"postcss-import": "15.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3"
}
}