This repository has been archived by the owner on Jun 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (120 loc) · 5.77 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "frontend-boilerplate",
"version": "0.1.0",
"description": "A template for a vanilla html, css, js project. Using eslint, prettier, stylelint, babel and browsersync.",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/loctran016/frontend-boilerplate.git"
},
"author": "LocTran016",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"scripts": {
"build": "yarn build:vite && yarn build:eleventy",
"build-dev": "build && vite preview",
"build:eleventy": "NODE_ENV=production eleventy",
"build:vite": "NODE_ENV=production vite build",
"clean": "rimraf website",
"cz": "git add . && git-cz && git push origin vite",
"debug": "yarn cross-env DEBUG=Eleventy* npx @11ty/eleventy --dryrun",
"debug2": "run-script-os",
"debug2:default": "DEBUG=Eleventy* npx @11ty/eleventy --dryrun",
"debug2:windows": "set DEBUG=Eleventy* & npx @11ty/eleventy --dryrun",
"dev": "cross-env NODE_ENV=development concurrently \"yarn:dev:*\"",
"dev:eleventy": "eleventy --serve",
"dev:vite": "vite",
"folder": "tree -I \"node_modules\"",
"format": "concurrently \"yarn:format:*\" && echo Please apply the diff",
"format:eslint": "echo Fixing Lint Issues With Eslint... && yarn eslint --ext .js --fix --quiet && echo Fix generated successfully. || (echo Fix failed! && exit 1)",
"format:pkg": "format-package -w",
"format:prettier": "echo Fixing Lint Issues With Prettier... && yarn prettier -w . && echo Fix generated successfully. || (echo Fix failed! && exit 1)",
"format:stylelint": "echo Fixing Lint Issues With Stylelint... && stylelint src/styles/**/*.css --fix && echo Fix generated successfully. || (echo Fix failed! && exit 1)",
"lint": "concurrently \"yarn:lint:*\"",
"lint:eslint": "echo Linting With Eslint... && yarn eslint --ext .js --quiet && echo Lint passed.|| (echo Lint failed && exit 1)",
"lint:prettier": "echo Linting With Prettier... && yarn prettier --check . && echo Lint passed. || (echo Lint failed && exit 1)",
"lint:stylelint": "echo Linting With Stylelint... && stylelint src/styles/**/*.css && echo Lint passed. || (echo Lint failed && exit 1)",
"lintci": "concurrently \"yarn:lintci:*\" && echo Please apply the following diff using git apply && git diff",
"lintci:eslint": "echo Linting With Eslint... && yarn eslint --format github --ext .js --quiet && echo Lint passed. || (echo Lint failed, attempting fix... && yarn eslint --ext .js --fix --quiet && echo Fix generated successfully. || (echo Fix failed! && exit 1))",
"lintci:prettier": "echo Linting With Prettier... && yarn prettier --check . && echo Lint passed. || (echo Lint failed, attempting fix... && yarn prettier -w . && echo Fix generated successfully. || (echo Fix failed! && exit 1))",
"lintci:stylelint": "echo Linting With Stylelint... && stylelint src/styles/**/*.css && echo Lint passed. || (echo Lint failed, attempting fix... && stylelint src/styles/**/*.css --fix && echo Fix generated successfully. || (echo Fix failed! && exit 1))",
"postinstall": "husky install",
"release": "bump-version",
"rm": "snowpack rm",
"start": "snowpack dev",
"min": "node ./squoosh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"@fortawesome/fontawesome-free": "^5.15.3",
"@squoosh/lib": "^0.3.1",
"@vitejs/plugin-legacy": "^1.4.3",
"alpinejs": "^3.2.1",
"daisyui": "^1.6.0",
"eleventy-plugin-blog-tools": "^0.3.1",
"eleventy-plugin-reader-bar": "^0.2.0",
"markdown-it-anchor": "^8.0.4",
"markdown-it-attrs": "^4.0.0",
"markdown-it-emoji": "^2.0.0",
"overlayscrollbars": "^1.13.1",
"reveal.js": "^4.1.3",
"theme-change": "^2.0.2",
"typed.js": "^2.0.12"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-inclusive-language": "^1.0.2",
"@babel/core": "^7.14.6",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@picgo/bump-version": "^1.1.0",
"autoprefixer": "^10.2.6",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.6",
"eleventy-plugin-lazyimages": "^2.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"favicons": "^6.2.2",
"format-package": "^6.1.0",
"glob": "^7.1.7",
"html-minifier": "^4.0.0",
"husky": "^6.0.0",
"lighthouse": "^8.0.0",
"moment": "^2.29.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"psi": "^4.1.0",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.6",
"stylelint": "13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "22.0.0",
"tailwindcss": "^2.2.4",
"tree-node-cli": "^1.4.0",
"vite": "^2.3.8"
}
}