-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.21 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
{
"name": "lerboardx-svelte-kit",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js",
"test": "pnpm run test:integration && npm run test:unit",
"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 .",
"test:integration": "playwright test",
"test:unit": "vitest",
"check-updates": "npx npm-check-updates",
"update-packages": "npx npm-check-updates -u",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,svelte}": [
"npm run format",
"npm run lint"
],
"*.{css,scss,json,svg,js,cjs,html,md}": "prettier --write --ignore-unknown"
},
"dependencies": {
"@floating-ui/dom": "^1.5.1",
"bezier-js": "^6.1.3",
"cors": "^2.8.5",
"express": "~4.18.2",
"flowbite": "^1.8.1",
"flowbite-svelte": "^0.41.2",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1",
"tailwind-merge": "^1.14.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-node": "^1.3.1",
"@sveltejs/kit": "^1.20.4",
"@types/bezier-js": "^4.1.0",
"@types/cookie": "^0.5.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-svelte": "^2.30.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"npm-check-updates": "^16.10.15",
"postcss": "^8.4.24",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.64.1",
"svelte": "^4.1.2",
"svelte-check": "^3.4.3",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.4.2",
"vite-node": "^0.33.0",
"vitest": "^0.32.2"
},
"type": "module"
}