This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.47 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
39
40
41
42
43
{
"name": "snowpack-tailwind-boiler",
"version": "1.6.0",
"description": "",
"author": "Bjørnar Otterlei",
"homepage": "https://github.com/Bcdo/snowpack-tailwind-boiler",
"scripts": {
"postcss:watch": "postcss src/assets/css/index.pcss -o src/assets/css/index.css --env development -w",
"postcss:build": "postcss src/assets/css/index.pcss -o src/assets/css/index.css --env production",
"snowpack:dev": "snowpack dev",
"snowpack:build": "snowpack build",
"clean": "rm -rf build",
"build": "npm-run-all -s clean postcss:build snowpack:build",
"start": "npm-run-all -s clean -p postcss:watch snowpack:dev",
"install:husky": "husky install",
"pre-commit": "pretty-quick --staged"
},
"license": "MIT",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.1.3",
"@snowpack/plugin-optimize": "^0.2.13",
"autoprefixer": "^10.2.5",
"cssnano": "^4.1.11",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "6",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"postcss-fontpath": "^1.0.0",
"posthtml-expressions": "^1.7.1",
"posthtml-include": "^1.7.0",
"posthtml-load-config": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"snowpack": "^3.3.7",
"stylelint-config-standard": "^21.0.0",
"tailwindcss": "^2.1.1"
}
}