forked from tailwindlabs/tailwindcss-playground
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 966 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 966 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
{
"scripts": {
"// SERVING //": "",
"serve": "cross-env NODE_ENV=development concurrently \"postcss public/css/tailwind.css -o public/build/tailwind.css --watch\" \"live-server ./public\"",
"serve:prod": "cross-env NODE_ENV=production npm run serve",
"start": "npm run serve",
"// BUILDING //": "",
"build": "postcss public/css/tailwind.css -o public/build/tailwind.css",
"build:prod": "cross-env NODE_ENV=production npm run build",
"// LINTING //": "",
"lint:css": "stylelint public/css"
},
"dependencies": {
"autoprefixer": "^9.5.1",
"tailwindcss": "^1.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"cssnano": "^4.1.10",
"live-server": "^1.2.1",
"postcss-cli": "^6.1.2",
"postcss-import": "^12.0.1",
"stylelint": "^10.0.1",
"stylelint-cli": "^1.1.0",
"stylelint-config-recommended": "^2.2.0"
}
}