forked from panloaf/11st-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "11st-starter-kit",
"description": "11ty, powered by Snowpack with Tailwind CSS and Alpine.js.",
"version": "1.0.0",
"engines": {
"node": "14.x.x",
"npm": "7.x.x"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:stefanfrede/11st-starter-kit.git"
},
"keywords": [
"alpinejs",
"eleventy",
"netlify",
"snowpack",
"tailwindcss"
],
"author": {
"name": "Stefan Frede",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/stefanfrede/11st-starter-kit/issues"
},
"homepage": "https://11st-starter-kit.netlify.app",
"browserslist": [
"defaults",
"maintained node versions",
"> 5%"
],
"lint-staged": {
"*.{css,js,html}": "stylelint --fix",
"*.{js,html}": "eslint --fix"
},
"scripts": {
"clean": "rimraf src/_site",
"serve": "serve --no-clipboard --listen 8080 dist",
"dev": "cross-env NODE_ENV=development run-s clean dev:*",
"dev:eleventy": "npx @11ty/eleventy",
"dev:snowpack": "snowpack dev",
"build": "cross-env NODE_ENV=production run-s clean build:*",
"build:eleventy": "npx @11ty/eleventy",
"build:snowpack": "snowpack build",
"build:sw": "workbox generateSW",
"lint": "run-s lint:*",
"lint:eslint": "eslint --ext .js,.html src/",
"lint:stylelint": "stylelint src/**/*.js src/**/*.html src/**/*.css",
"format": "run-s format:*",
"format:eslint": "eslint --ext .js,.html src/ --fix",
"format:stylelint": "stylelint src/**/*.js src/**/*.html src/**/*.css --fix",
"validate": "run-s build lint",
"setup": "npm install && npm run validate",
"prepare": "husky install"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@jadex/snowpack-plugin-tailwindcss-jit": "^0.3.0",
"@snowpack/plugin-postcss": "^1.3.0",
"@snowpack/plugin-run-script": "^2.3.0",
"@tailwindcss/jit": "^0.1.18",
"@tailwindcss/typography": "^0.4.0",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"browserslist": "^4.16.6",
"cross-env": "^7.0.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.14",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"serve": "^12.0.0",
"snowpack": "^3.5.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"tailwindcss": "^2.1.2",
"workbox-cli": "^6.1.5"
},
"dependencies": {
"alpinejs": "^3.0.1"
}
}