-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 930 Bytes
/
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
{
"scripts": {
"serve": "cross-env TAILWIND_MODE=watch NODE_ENV=development concurrently \"postcss public/styles/index.pcss -o public/styles/index.css --watch\" \"live-server --no-browser --port=8081 ./public\"",
"development": "cross-env TAILWIND_MODE=build NODE_ENV=development postcss public/styles/index.pcss -o public/styles/index.css",
"production": "cross-env TAILWIND_MODE=build NODE_ENV=production postcss public/styles/index.pcss -o public/styles/index.css",
"start": "npm run serve"
},
"devDependencies": {
"autoprefixer": "^10.2.6",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-prettier": "^3.4.0",
"live-server": "^1.2.1",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"postcss-nested": "^5.0.5",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.4"
}
}