This repository was archived by the owner on Apr 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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": "lucien-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "pnpm exec vite",
"build": "pnpm exec vite build --mode production",
"preview": "pnpm exec vite preview",
"format": "pnpm exec prettier --config ./.prettierrc 'src/**/*.ts' --write",
"check": "pnpm exec svelte-check --tsconfig ./tsconfig.json",
"prepare": "husky install",
"check-updates": "pnpm dlx npm-check-updates",
"apply-updates": "pnpm dlx npm-check-updates -u && pnpm install",
"start:server": "pnpm exec nodemon srv/server.ts",
"forward:ngrok": "ngrok http 3000"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.8",
"@tsconfig/svelte": "^3.0.0",
"@types/express": "^4.17.14",
"@types/node": "^18.7.21",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"sass": "^1.55.0",
"svelte": "^3.50.1",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"vite": "^3.1.3"
},
"lint-staged": {
"**/*": "pnpm exec prettier --write --ignore-unknown --plugin-search-dir=. ./**/*.html"
},
"dependencies": {
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-static-gzip": "^2.1.7",
"file-type": "^18.0.0",
"http-status-codes": "^2.2.0",
"svelte-markdown": "^0.2.3",
"svelte-navigator": "^3.2.2"
}
}