-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "snowpack-template-tailwind",
"version": "0.9.3",
"author": "Jonathan Alvarez",
"description": "Snowpack CSA Template for tailwind, prettier and autopublish on GH pages",
"repository": "github:jonalvarezz/snowpack-template-tailwind",
"homepage": "https://jonalvarezz.github.io/snowpack-template-tailwind",
"keywords": [
"snowpack",
"csa-template"
],
"license": "MIT",
"scripts": {
"start": "snowpack dev",
"build": "snowpack build",
"format": "prettier --write \"src/**/*.js\"",
"lint": "prettier --check \"src/**/*.js\"",
"pre-commit": "pretty-quick --staged",
"install:husky": "husky install"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"files": [
".gitignore",
".github/workflows/publish.yml",
"public",
"src",
"snowpack.config.js",
"yarn.lock"
],
"devDependencies": {
"husky": "7",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"snowpack": "^3.0.11",
"tailwindcss": "^2.0.2"
}
}