This repository has been archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.07 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
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "lsg-musin",
"version": "0.0.0",
"description": "The Louise-Schroeder-Gymnasium's homepage",
"repository": {
"type": "git",
"url": "https://github.com/3x071c/lsg-musin"
},
"homepage": "https://lsg.musin.de",
"bugs": {
"url": "https://github.com/3x071c/lsg-musin/issues"
},
"author": {
"email": "[email protected]",
"name": "Victor Homic",
"url": "https://3x071c.com"
},
"license": "AGPL-3.0-or-later",
"private": true,
"engines": {
"node": ">= 16"
},
"os": [
"linux",
"darwin"
],
"scripts": {
"astro": "astro",
"astro:build": "astro build",
"astro:check": "astro check",
"astro:dev": "astro dev",
"astro:preview": "astro preview",
"astro:start": "astro start",
"build": "cross-env NODE_ENV=production run-s clean generate astro:build",
"check": "tsc --noEmit",
"clean": "run-s \"clean:*\"",
"clean:1": "",
"cspell:individual": "cspell --dot",
"cspell:report": "npm run cspell:individual -- \"**\"",
"dev": "cross-env NODE_ENV=development run-s clean generate astro:dev",
"eslint:fix": "npm run eslint:template -- --fix .",
"eslint:individual": "npm run eslint:template -- --fix",
"eslint:report": "npm run eslint:template -- --max-warnings 0 .",
"eslint:template": "eslint --cache --report-unused-disable-directives --no-error-on-unmatched-pattern --ext .astro,.tsx,.ts,.jsx,.js,.mjs,.cjs --ignore-path .gitignore",
"fix": "run-s prettier:fix eslint:fix secretlint:report cspell:report",
"generate": "",
"lint": "run-s prettier:report eslint:report secretlint:report cspell:report",
"new": "run-s clean generate",
"preinstall": "npx --yes only-allow npm",
"prepare": "husky install",
"prettier:fix": "npm run prettier:individual -- .",
"prettier:individual": "npm run prettier:template -- --write",
"prettier:report": "npm run prettier:template -- --check .",
"prettier:template": "prettier --plugin-search-dir=. --ignore-unknown --ignore-path .gitignore",
"prod": "cross-env NODE_ENV=production run-s build start",
"secretlint:individual": "secretlint --secretlintignore .gitignore",
"secretlint:report": "npm run secretlint:individual -- \".\"",
"start": "cross-env NODE_ENV=production run-s astro:preview"
},
"dependencies": {
"@astrojs/partytown": "1.0.1",
"@picocss/pico": "1.5.6",
"astro": "1.4.6",
"astro-compressor": "0.1.2",
"astro-html-minifier": "0.2.0",
"astro-icon": "0.7.3",
"astro-imagetools": "0.6.11",
"astro-netlify-cms": "0.2.3"
},
"devDependencies": {
"@cspell/dict-de-de": "3.0.0",
"@secretlint/secretlint-rule-preset-recommend": "5.3.0",
"@types/eslint": "8.4.6",
"@types/node": "18.8.3",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"autoprefixer": "10.4.12",
"browserslist": "4.21.4",
"cross-env": "7.0.3",
"cspell": "6.12.0",
"cssnano": "5.1.13",
"cssnano-preset-advanced": "5.3.8",
"eslint": "8.25.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-astro": "0.20.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"only-allow": "1.1.1",
"postcss": "8.4.17",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.0.0",
"postcss-preset-env": "7.8.2",
"postcss-syntax": "0.36.2",
"prettier": "2.7.1",
"prettier-plugin-astro": "0.5.5",
"prettier-plugin-pkg": "0.17.1",
"prettier-plugin-prisma": "4.4.0",
"prettier-plugin-sort-json": "0.0.3",
"rimraf": "3.0.2",
"secretlint": "5.3.0",
"typescript": "4.8.4",
"vite": "3.1.6"
},
"overrides": {
"file-type": "< 17.0.0 || >= 17.1.3",
"netlify-cms-core": {
"ajv": "8.11.0"
},
"react": "18.2.0",
"react-dom": "18.2.0",
"trim": "1.0.1",
"uuid": "9.0.0"
},
"sideEffects": false,
"browserslist": [
"defaults"
],
"lint-staged": {
"*": [
"npm run prettier:individual",
"npm run secretlint:individual",
"npm run cspell:individual"
],
"*.{astro,tsx,ts,jsx,js,mjs,cjs}": "npm run eslint:individual"
}
}