forked from fmstuff/wallbox-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "wallbox-simulator",
"version": "0.0.1",
"license": "MIT",
"description": "OCPP wallbox simulator implemented as Svelte webapp.",
"author": "Felix Manke (https://github.com/fmstuff)",
"contributors": [],
"bugs": "https://github.com/fmstuff/wallbox-simulator/issues",
"homepage": "https://github.com/fmstuff/wallbox-simulator",
"repository": {
"type": "git",
"url": "[email protected]:fmstuff/wallbox-simulator.git"
},
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"deploy": "node ./gh-pages.js",
"serve": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.41",
"@tsconfig/svelte": "3.0.0",
"autoprefixer": "10.4.4",
"gh-pages": "3.2.3",
"svelte": "3.47.0",
"svelte-check": "2.6.0",
"svelte-preprocess": "4.10.5",
"tailwindcss": "3.0.23",
"tslib": "2.3.1",
"typescript": "4.6.3",
"vite": "2.9.1"
},
"dependencies": {
"daisyui": "2.13.6",
"uuid": "8.3.2"
}
}