-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 973 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
34
{
"name": "chrome-extension-starter-kit",
"version": "1.0.0",
"description": "Starter template for building chrome extensions faster using React, Webpack and Tailwind CSS.",
"main": "index.js",
"scripts": {
"dev": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"copy-webpack-plugin": "^12.0.2",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"html-webpack-plugin": "^5.6.0",
"postcss": "^8.4.38",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}