-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 3.05 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
80
81
82
83
84
85
86
87
88
89
{
"name": "video-queue",
"version": "0.0.1",
"scripts": {
"start": "node --experimental-modules --experimental-specifier-resolution=node --loader ts-node/esm ./node_modules/.bin/mikro-orm migration:up && vite build && vite preview --host 0.0.0.0 --port 3000",
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"prepare": "husky install",
"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 --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"migration:create": "node --experimental-modules --experimental-specifier-resolution=node --loader ts-node/esm ./node_modules/.bin/mikro-orm migration:create",
"migration:up": "node --experimental-modules --experimental-specifier-resolution=node --loader ts-node/esm ./node_modules/.bin/mikro-orm migration:up"
},
"devDependencies": {
"@bybas/weather-icons": "^2.0.0",
"@bybas/weather-icons-master": "github:basmilius/weather-icons",
"@carbon/charts-svelte": "^1.6.0",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@imask/svelte": "^6.4.2",
"@mdi/font": "^6.9.96",
"@mikro-orm/better-sqlite": "^5.9.4",
"@mikro-orm/cli": "^5.9.4",
"@mikro-orm/core": "^5.9.4",
"@mikro-orm/migrations": "^5.9.4",
"@mikro-orm/reflection": "^5.9.4",
"@playwright/test": "^1.22.2",
"@sveltejs/adapter-node": "next",
"@sveltejs/kit": "next",
"@types/cookie": "^0.5.1",
"@types/humps": "^2.0.1",
"@types/qrcode": "^1.4.2",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-basic-ssl": "^0.1.1",
"bulma": "^0.9.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie": "^0.5.0",
"copy-to-clipboard": "^3.3.3",
"d3": "^7.8.5",
"d3-cloud": "^1.2.7",
"d3-sankey": "^0.12.3",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.3",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"hash-wasm": "^4.9.0",
"humps": "^2.0.1",
"husky": "^7.0.0",
"js-base64": "^3.7.2",
"lint-staged": "^14.0.1",
"moment": "^2.29.4",
"prettier": "^2.6.2",
"prettier-plugin-jsdoc": "^0.3.38",
"prettier-plugin-svelte": "^2.7.0",
"prism-themes": "^1.9.0",
"prismjs": "^1.29.0",
"qrcode": "^1.5.0",
"reflect-metadata": "^0.1.13",
"sass": "^1.53.0",
"simple-icons": "^6.23.0",
"socket.io-client": "^4.5.4",
"svelte": ">=3.49.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=20"
},
"type": "module",
"mikro-orm": {
"useTsNode": true
},
"dependencies": {
"swiper": "^10.2.0"
}
}