We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8f79d commit 8304072Copy full SHA for 8304072
package.json
@@ -14,14 +14,21 @@
14
"trailingComma": "es5"
15
},
16
"scripts": {
17
- "prepublishOnly": "node scripts/build.js"
+ "dev": "concurrently \"npm run serve\" \"npm run watch\"",
18
+ "serve": "live-server .",
19
+ "watch": "chokidar \"./src/**/*.js\" -c \"npm run build\"",
20
+ "build": "node scripts/build.js",
21
+ "prepublishOnly": "npm run build"
22
23
"peerDependencies": {
24
"tailwindcss":">=2.0.0"
25
26
"devDependencies": {
27
"autoprefixer": "^10.0.2",
28
+ "chokidar-cli": "^2.1.0",
29
"clean-css": "^4.2.1",
30
+ "concurrently": "^5.3.0",
31
+ "live-server": "^1.2.1",
32
"postcss": "^8.1.7",
33
"tailwindcss": "^2.0.3"
34
0 commit comments