-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.33 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
{
"name": "who-is-hiring-dashboard",
"description": "Dashboard for Ask HN: Who is hiring?",
"version": "0.0.4",
"license": "MIT",
"author": "Robert Hall <[email protected]> (http://arxpoetica.com/)",
"homepage": "https://github.com/arxpoetica/who-is-hiring-dashboard#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/arxpoetica/who-is-hiring-dashboard.git"
},
"type": "module",
"volta": {
"node": "18.15.0"
},
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"test": "playwright test",
"test:unit": "vitest",
"cleanup": "if [ -d node_modules ]; then rm -rf node_modules; fi && if [ -d .svelte-kit ]; then rm -rf .svelte-kit; fi && if [ -f pnpm-lock.yaml ]; then rm -rf pnpm-lock.yaml; fi && pnpm install",
"update": "pnpm update --interactive --latest"
},
"dependencies": {
"dayjs": "1.11.7",
"devalue": "4.3.0"
},
"devDependencies": {
"@playwright/test": "1.32.2",
"@poppanator/sveltekit-svg": "3.0.0",
"@sveltejs/adapter-auto": "2.0.0",
"@sveltejs/kit": "1.15.2",
"svelte": "3.58.0",
"svelte-check": "3.2.0",
"typescript": "5.0.4",
"vite": "4.2.1",
"vitest": "0.29.8"
}
}