-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.72 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
{
"name": "javiergonzalezdotio",
"description": "A blog by Javier Gonzalez",
"version": "2.0.0",
"engines": {
"node": "16.x.x",
"npm": "8.x.x"
},
"main": "index.js",
"keywords": [
"alpinejs",
"eleventy",
"jamstack",
"liquidjs",
"netlify",
"pwa",
"tailwindcss",
"vite"
],
"license": "MIT",
"homepage": "https://javiergonzalez.io",
"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": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.14",
"postcss-cli": "^10.0.0",
"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": "^28.0.0",
"stylelint-no-unsupported-browser-features": "^5.0.2",
"stylelint-order": "^5.0.0",
"tailwindcss": "^3.0.1",
"vite": "^3.1.0",
"vite-plugin-pwa": "^0.12.0",
"vite-plugin-static-copy": "^0.13.0"
},
"dependencies": {
"alpinejs": "^3.0.1",
"core-js": "^3.20.2"
}
}