-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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
68
69
{
"name": "ai.quansat.dev",
"description": "source code for ai.quansat.dev",
"version": "1.0.0-next",
"private": true,
"type": "module",
"author": {
"email": "developers@quansat.dev",
"name": "quansat.dev",
"url": "https://quansat.dev"
},
"scripts": {
"boot": "pnpm install && run-p boot:*",
"boot:lefthook": "lefthook install",
"boot:env": "shx cp .env.example .env",
"dev": "vite dev --port 5005",
"build": "svelte-kit sync && vite build",
"preview": "vite preview",
"lint": "run-p lint:*",
"lint:svelte": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"lint:es": "svelte-kit sync && eslint .",
"lint:style": "stylelint '**/*.{svelte,css}'",
"format": "prettier --write --ignore-path=.prettierignore --config=prettier.config.js ."
},
"devDependencies": {
"@svelte-put/preprocess-external-link": "^1.0.0",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/enhanced-img": "0.9.2",
"@sveltejs/kit": "2.49.2",
"@sveltejs/vite-plugin-svelte": "6.2.1",
"@tailwindcss/vite": "4.1.18",
"@total-typescript/ts-reset": "^0.6.1",
"@types/lodash.shuffle": "^4.2.9",
"@types/node": "^25.0.3",
"@types/sanitize-html": "^2.16.0",
"@vnphanquang/eslint-config": "^4.1.0",
"eslint": "^9.39.2",
"eslint-plugin-svelte": "^3.13.1",
"npm-run-all": "^4.1.5",
"postcss-color-scheme": "^2.1.0",
"postcss-custom-media": "^11.0.6",
"prettier": "3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"shx": "^0.4.0",
"stylelint": "^16.26.1",
"stylelint-config-clean-order": "^8.0.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^39.0.1",
"svelte": "5.46.1",
"tailwindcss": "4.1.18",
"typescript": "^5.9.3",
"valibot": "^1.2.0",
"vite": "^7.3.0",
"vite-plugin-qrcode": "^0.3.0"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"pnpm": ">=10.22.0",
"node": ">=24.0.0"
},
"volta": {
"node": "24.12.0"
},
"dependencies": {
"lodash.shuffle": "^4.2.0",
"sanitize-html": "^2.17.0"
}
}