-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.1 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
98
99
100
101
102
103
104
105
{
"name": "11st-starter-kit",
"description": "11ty, powered by Vite with Tailwind CSS and Alpine.js.",
"version": "2.0.0",
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:stefanfrede/11st-starter-kit.git"
},
"keywords": [
"alpinejs",
"eleventy",
"jamstack",
"liquidjs",
"netlify",
"pwa",
"tailwindcss",
"vite"
],
"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",
"lint-staged": {
"*.html": "prettier --write",
"*.css": "stylelint --cache --fix",
"*.js": "eslint --cache --fix"
},
"scripts": {
"clean": "rimraf _site",
"prepare": "npx husky install",
"preview": "npx vite preview",
"predev": "run-s clean",
"dev": "cross-env NODE_ENV=development run-p dev:*",
"dev:eleventy": "npx @11ty/eleventy --incremental --watch",
"dev:vite": "npx vite",
"prebuild": "run-s clean",
"build": "cross-env NODE_ENV=production run-s build:*",
"build:eleventy": "npx @11ty/eleventy",
"build:vite": "npx vite build",
"lint": "run-s lint:*",
"lint:html": "npx prettier --check \"src/**/*.html\"",
"lint:stylelint": "npx stylelint \"src/**/*.css\"",
"lint:eslint": "npx eslint --ext .js src/",
"format": "run-s format:*",
"format:html": "npx prettier --write \"src/**/*.html\"",
"format:stylelint": "npx stylelint \"src/**/*.css\" --fix",
"format:eslint": "npx eslint --ext .js src/ --fix",
"validate": "run-s build lint",
"setup": "npm install && npm run validate"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.16.5",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.2.4",
"browserslist": "^4.16.6",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-compat": "^4.0.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.14",
"postcss-cli": "^9.0.1",
"postcss-nesting": "^10.1.10",
"prettier": "^2.2.1",
"prettier-plugin-tailwindcss": "^0.1.7",
"rimraf": "^3.0.2",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^25.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.0.1",
"vite-plugin-pwa": "^0.12.0"
},
"dependencies": {
"@alpinejs/collapse": "^3.10.2",
"@alpinejs/focus": "^3.10.2",
"alpinejs": "^3.0.1",
"core-js": "^3.20.2",
"vite": "^2.7.13"
}
}