-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 875 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
{
"scripts": {
"dev": "parcel --port 2345 ./src/index.html",
"build": "parcel build ./src/index.html",
"clean": "rm -rf ./node_modules && rm -rf ./dist && rm -rf ./.parcel-cache && yarn install"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.10.3",
"@parcel/transformer-webmanifest": "^2.10.3",
"@types/prettier": "^3.0.0",
"@types/react": "^18.2.79",
"eslint": "^9.0.0",
"eslint-config-prettier": "^8.5.0",
"parcel": "^2.10.3",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.3",
"process": "^0.11.10",
"tailwindcss": "^3.3.5",
"typescript": "^5.4.5"
},
"dependencies": {
"@parcel/service-worker": "^2.10.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}