-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "outerwildsmods-svelte",
"version": "1.0.0",
"type": "module",
"private": true,
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.1",
"@sveltejs/kit": "^1.16.3",
"@types/commonmark": "^0.27.6",
"@types/gtag.js": "^0.0.12",
"@types/lodash-es": "^4.17.6",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.14",
"commonmark": "^0.30.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-svelte3": "^4.0.0",
"globby": "^13.1.3",
"lodash-es": "^4.17.21",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"sharp": "^0.33.4",
"svelte": "^3.56.0",
"svelte-check": "^3.1.3",
"svelte-markdown": "^0.2.3",
"tailwindcss": "^3.2.7",
"tslib": "^2.5.0",
"typescript": "^5.1.6",
"vite": "^4.1.5"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build && npm run post:build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"post:build": "node post-build.mjs"
},
"engines": {
"node": ">=20",
"npm": ">=10"
}
}