-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "minifolio",
"version": "0.6.3",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"dev": "vite dev",
"sync": "svelte-kit sync",
"build": "svelte-kit sync && vite build",
"preview": "vite preview",
"test": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "svelte-kit sync && eslint .",
"lint-fix": "svelte-kit sync && eslint --fix .",
"ts-node": "ts-node-esm"
},
"type": "module",
"dependencies": {
"child-process-promise": "^2.2.1",
"color": "^4.2.3",
"dotenv": "^16.4.5",
"highlight.js": "^11.9.0",
"jsonwebtoken": "^9.0.2",
"marked": "^12.0.2",
"mime-types": "^2.1.35",
"nanoid": "^5.0.7",
"random-words": "^2.0.1",
"rimraf": "^6.0.1",
"sanitize-filename": "^1.6.3",
"semver": "^7.6.3",
"spinnies": "^0.5.1",
"superstruct": "^2.0.2",
"tippy.js": "^6.3.7",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@sveltejs/adapter-node": "^5.0.1",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@testing-library/svelte": "^5.1.0",
"@types/child-process-promise": "^2.2.6",
"@types/color": "^3.0.6",
"@types/debug": "^4.1.12",
"@types/eslint": "^9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/jsonwebtoken": "^9.0.6",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.12.12",
"@types/semver": "^7.5.8",
"@types/spinnies": "^0.5.3",
"@types/validator": "^13.12.0",
"asciinema-player": "github:MaddyGuthridge/asciinema-player",
"chalk": "^5.3.0",
"cross-fetch": "^4.0.0",
"eslint": "^9.11.1",
"eslint-plugin-svelte": "^2.45.1",
"globals": "^15.9.0",
"jest-extended": "^4.0.2",
"simple-git": "^3.25.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.4.1",
"typescript": "~5.5.0",
"typescript-eslint": "^8.7.0",
"vite": "^5.4.6",
"vitest": "^2.0.5"
},
"//overrides": [
"Force cookie to be ^0.7.0 to mitigate error as per: https://github.com/jshttp/cookie/pull/167",
"Also I hate HATE *HATE* this method of commenting"
],
"overrides": {
"@sveltejs/kit": {
"cookie": "^0.7.0"
}
}
}