-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.28 KB
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
{
"name": "thesis",
"packageManager": "yarn@4.6.0",
"private": true,
"type": "module",
"scripts": {
"dev": "run server",
"prod": "run build && run server:prod",
"build": "vite build && run build:sw",
"build:sw": "esbuild ./serviceWorker.ts --define:import.meta.env.DEV=false --define:import.meta.env.PROD=true --define:import.meta.env.BASE_URL=\\\"/\\\" --define:import.meta.env.PUBLIC_ENV__MODE=\\\"$PUBLIC_ENV__MODE\\\" --define:import.meta.env.PUBLIC_ENV__APP_SHELL=\\\"$PUBLIC_ENV__APP_SHELL\\\" --bundle --platform=browser --target=es2022 --minify --sourcemap --inject:utils/asset-manifest.js --outfile=dist/client/serviceWorker.js",
"server": "node --experimental-strip-types ./server/index.ts",
"server:prod": "NODE_ENV=production node --experimental-strip-types ./server/index.ts",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"typecheck:watch": "run typecheck --watch",
"postinstall": "husky install || true"
},
"dependencies": {
"@fastify/compress": "^8.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/early-hints": "^1.0.1",
"@fastify/formbody": "^8.0.2",
"@fastify/helmet": "^13.0.2",
"@fastify/middie": "^9.3.1",
"@fastify/static": "^9.0.0",
"@vue/server-renderer": "^3.5.30",
"@vue/tsconfig": "^0.9.0",
"cookie-store": "^4.0.0-next.4",
"fastify": "^5.8.2",
"urlpattern-polyfill": "^10.1.0",
"vike": "0.4.255",
"vite": "^7.3.1",
"vue": "^3.5.30",
"zip-to-city": "^0.1.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/connect": "^3.4.38",
"@types/node": "^22.10.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@yarnpkg/sdks": "^3.2.0",
"esbuild": "^0.24.2",
"eslint": "9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "~3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vue-tsc": "^2.2.0"
},
"lint-staged": {
"*.{cjs,mjs,js,jsx,cts,mts,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{css,html,md,json,webmanifest}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
}
}