-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 978 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
{
"name": "react-chrome-extension-template-side-panel",
"version": "0.2.0",
"license": "MIT",
"source": "./src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"prestart": "yarn style",
"start": "parcel --dist-dir ./public/dist",
"prebuild": "yarn style && rm -rf ./public/dist",
"build": "parcel build --dist-dir ./public/dist --no-content-hash" ,
"style": "npx tailwindcss -i ./src/input.css -o ./src/tailwindcss-output.css",
"style:watch": "yarn style -- --watch"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"react-frame-component": "^5.2.3"
},
"devDependencies": {
"@types/react": "^18.0.19",
"@types/react-dom": "^18.0.6",
"parcel": "latest",
"postcss": "^8.4.16",
"postcss-nested": "^5.0.6",
"process": "^0.11.10",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
}
}