-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1.07 KB
/
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
35
36
37
38
{
"name": "cube-with-tailwind",
"version": "0.1.0",
"description": "An example of how you can use Tailwind CSS as the U (utilities) in CUBE CSS",
"main": "tailwind.config.js",
"watch": {
"process": {
"patterns": [
"src"
],
"extensions": "html,css,js",
"runOnChangeOnly": false
}
},
"scripts": {
"process": "postcss src/css --dir dist/css && cp src/index.html dist/index.html",
"start": "node css-props-generator.js && npm run process && concurrently 'npm-watch' 'npx serve dist'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hankchizljaw/CUBE-with-tailwind.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hankchizljaw/CUBE-with-tailwind/issues"
},
"homepage": "https://github.com/hankchizljaw/CUBE-with-tailwind#readme",
"devDependencies": {
"concurrently": "^7.0.0",
"npm-watch": "^0.11.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-partial-import": "^4.1.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.16"
}
}