-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 961 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 961 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
28
29
{
"name": "template-extension-tailwind-typescript",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"watch:tailwind": "postcss src/assets/tailwind.css -o dist/tailwind.css -w",
"build:tailwind": "postcss src/assets/tailwind.css -o dist/tailwind.css",
"start": "concurrently \"yarn watch:tailwind\" \"webpack --watch --progress --config webpack.dev.js\"",
"build": "webpack --progress --config webpack.prod.js"
},
"devDependencies": {
"@types/chrome": "^0.0.200",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.5.0",
"copy-webpack-plugin": "^11.0.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.2",
"tailwindcss": "^3.2.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}