forked from mollerjorge/gulpie-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 854 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
25
26
27
28
29
{
"name": "gulpie",
"version": "1.0.0",
"description": "Gulpie",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production postcss css/styles.css -o public/css/styles.css",
"watch": "postcss -w css/styles.css -o public/css/styles.css && live-server public",
"live": "live-server public",
"lint": "html-linter --config ./html-linter.json ./public/**/*.html",
"develop": "npm-run-all --parallel live watch"
},
"author": "Jorge Moller",
"license": "ISC",
"dependencies": {
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/line-clamp": "^0.2.0",
"autoprefixer": "^10.0.4",
"postcss": "^8.1.10",
"postcss-cli": "^8.3.0",
"postcss-import": "^14.0.0",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"html-linter": "^1.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
}
}