-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.52 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
{
"name": "voting",
"version": "1.0.1",
"license": "MIT",
"scripts": {
"dev": "vite dev --port 3004 --host",
"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",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"prodServer": "PORT=3005 tsm ./prodServer.ts"
},
"devDependencies": {
"@iconify-json/mdi": "^1.1.53",
"@playwright/test": "^1.36.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.22.3",
"@types/qrcode": "^1.5.1",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "2.32.2",
"postcss": "^8.4.26",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
"svelte-check": "^3.4.6",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"unplugin-icons": "^0.16.5",
"vite": "^4.4.4"
},
"type": "module",
"dependencies": {
"nanoid": "^4.0.2",
"qrcode": "^1.5.3",
"redis": "^4.6.7",
"socket.io": "^4.7.1",
"tsm": "^2.3.0",
"ws": "^8.13.0"
},
"volta": {
"node": "19.9.0"
}
}