-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.79 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
{
"name": "adam.nz",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"start": "node index.js",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"buildtar": "pnpm build && tar -cvf ./deploy.tar --exclude='*.map' ./captain-definition ./Dockerfile ./package.json ./pnpm-lock.yaml ./build/*",
"deploytar": "caprover deploy -t ./deploy.tar",
"deployprod": "caprover deploy -h https://captain.ruru.haume.nz -a adam-nz -b main -p $( awk -F= '/^CAPROVER_PASS=/ {print $2}' ~/.env )"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@sveltejs/adapter-node": "^5.2.8",
"@sveltejs/kit": "^2.7.2",
"@sveltejs/vite-plugin-svelte": "4.0.0-next.7",
"@types/eslint": "^8.56.12",
"@types/marked": "^4.3.2",
"@types/md5": "^2.3.5",
"@types/node": "^22.7.7",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-svelte": "^2.45.1",
"html-to-image": "^1.11.11",
"html2canvas": "^1.4.1",
"husky": "^9.1.6",
"just-group-by": "^2.2.0",
"just-sort-by": "^3.2.0",
"pocketbase": "^0.21.5",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"sharp": "^0.33.5",
"snarkdown": "^2.0.0",
"svelte": "^5.0.3",
"svelte-check": "^3.8.6",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0",
"vite": "^5.4.9",
"vitest": "^1.6.0"
},
"type": "module",
"dependencies": {
"stripe": "^17.2.1"
}
}