-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "ReactJs-Chrome-Extension-boilerplate",
"version": "1.0.0",
"description": "A modern ReactJS Chrome Extension template with TailwindCSS and Webpack",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --watch --config webpack.dev.js",
"build:dev": "webpack --config webpack.dev.js",
"clean": "rimraf dist",
"check": "node scripts/check.js",
"package": "npm run build && node scripts/package.js"
},
"keywords": [
"chrome-extension",
"react",
"tailwindcss",
"webpack",
"manifest-v3"
],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/runtime": "^7.23.4",
"babel-polyfill": "^6.26.0",
"buffer": "^6.0.3",
"css-loader": "^6.8.1",
"fabric": "^6.9.1",
"file-loader": "^6.2.0",
"jspdf": "^2.5.2",
"postcss": "^8.5.0",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.4",
"react": "^18.2.0",
"react-custom-checkbox": "^2.0.1",
"react-dom": "^18.2.0",
"react-flags-select": "^2.1.2",
"react-select-search": "^3.0.9",
"ref-loader": "^1.0.3",
"style-loader": "^3.3.3",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@babel/core": "^7.23.4",
"@babel/preset-env": "^7.23.4",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"tailwind-scrollbar": "^4.0.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
}
}