-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.49 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.49 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "electric-panel",
"version": "1.0.0",
"description": "Web panel to manage various Source server management related tasks",
"homepage": "https://github.com/electricservers/panel",
"private": false,
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "pnpm prisma generate --schema prisma/schema_br.prisma && pnpm prisma generate --schema prisma/schema_arg.prisma && vite build",
"preview": "vite preview",
"test": "npm 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 --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"gen:exports": "svelte-lib-helpers exports",
"gen:docs": "svelte-lib-helpers docs",
"gen:compo-data": "svelte-lib-helpers compo-data",
"copy:package": "svelte-lib-helpers package",
"lib-helpers": "npm run gen:docs && npm run gen:compo-data && npm run build && npm run gen:exports && npm run copy:package",
"package:publish": "standard-version && git push --follow-tags origin main && npm publish",
"knip": "knip",
"knip:fix": "knip --fix",
"prune": "ts-prune -p tsconfig.json",
"unused:imports": "eslint . --ext .ts,.svelte --fix",
"unused:files": "unimported",
"docker:build": "docker build --build-arg GIT_COMMIT_COUNT=$(git rev-list --count master) -t maxijabase/electricpanel ."
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.27.3",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"apexcharts": "^5.3.2",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-svelte": "^2.46.1",
"eslint-plugin-unused-imports": "^3.2.0",
"knip": "^5.62.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.0.0",
"svelte": "^5.38.0",
"svelte-check": "^4.3.1",
"svelte-lib-helpers": "^0.4.30",
"svelte-meta-tags": "^3.1.4",
"tailwindcss": "^3.4.17",
"ts-prune": "^0.10.3",
"typescript": "^5.9.2",
"unimported": "^1.31.1",
"vite": "^5.4.19",
"vitest": "^2.1.9"
},
"type": "module",
"peerDependencies": {
"svelte": "^4.0.0"
},
"dependencies": {
"@node-steam/id": "^1.2.0",
"@prisma/client": "^6.0.0",
"@sveltejs/adapter-node": "^5.2.14",
"@types/node-steam-openid": "^1.0.3",
"flag-icons": "^7.5.0",
"flowbite": "^2.5.2",
"flowbite-svelte": "^0.46.23",
"flowbite-svelte-icons": "^1.6.2",
"mongoose": "^8.17.1",
"node-steam-openid": "^1.2.4",
"tailwind-merge": "^2.6.0"
},
"keywords": [
"svelte",
"sveltekit",
"tailwindcss",
"flowbite",
"ui",
"admin dashboard",
"signup"
],
"repository": {
"type": "git",
"url": "https://github.com/themesberg/flowbite-svelte-admin-dashboard"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
}
}