-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "popthegrid",
"private": true,
"version": "0.7.3",
"description": "Frontend for the 'Pop the grid!' game",
"type": "module",
"scripts": {
"dev": "netlify dev",
"dev:client": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"db:create": "docker create --name postgres-popthegrid --env-file ./.env.local -p 5432:5432 postgres:15.2-alpine",
"db:start": "docker start postgres-popthegrid",
"db:stop": "docker stop postgres-popthegrid"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@tsconfig/svelte": "^5.0.2",
"@types/cookie": "^0.6.0",
"@types/debug": "^4.1.12",
"@types/human-date": "^1.4.5",
"@types/humanize-duration": "^3.27.4",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"jsdom": "^24.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.1",
"svelte": "^4.2.11",
"typescript": "^5.3.3",
"vite": "^5.1.3",
"vite-plugin-pwa": "^0.18.2",
"vitest": "^1.3.0",
"vitest-fetch-mock": "^0.2.2",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"dependencies": {
"@svelte-put/clickoutside": "^3.0.1",
"@svelte-put/copy": "^3.0.0",
"cookie": "^0.6.0",
"debug": "^4.3.4",
"human-date": "^1.4.0",
"pretty-ms": "^9.0.0",
"svelte-confetti": "^1.3.2",
"svelte-material-icons": "^3.0.5"
},
"pnpm": {
"overrides": {
"esbuild": "~0.17.19"
}
}
}