-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.91 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": "scec-frontend",
"version": "0.0.1",
"private": true,
"engines": {
"npm": ">=10.0",
"node": ">=18.13 <22.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview --host 0.0.0.0 --port 8080",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"prepare": "svelte-kit sync && cp node_modules/swagger-ui-dist/swagger-ui.css* static/swagger-ui-dist && npm run smui-theme-light && npm run smui-theme-dark && src/theme/create-dark-css.sh && npm run smui-theme && echo >> static/smui-light.css && echo >> static/smui-dark.css",
"smui-theme-light": "smui-theme compile static/smui-light.css -i src/theme/light -s expanded",
"smui-theme-dark": "smui-theme compile src/theme/work/smui-dark.css -i src/theme/dark -s expanded",
"smui-theme": "smui-theme compile static/smui-dark.css -i src/theme/work -s expanded",
"lint": "eslint . --ext .js,.svelte"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@smui/button": "^7.0.0",
"@smui/card": "^7.0.0",
"@smui/common": "^7.0.0",
"@smui/icon-button": "^7.0.0",
"@smui/layout-grid": "^7.0.0",
"@smui/textfield": "^7.0.0",
"@smui/top-app-bar": "^7.0.0",
"@sveltejs/adapter-node": "^5.2.0",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/lodash": "^4.17.5",
"smui-theme": "^7.0.0",
"svelte": "^4.2.18",
"svelte-check": "^4.0.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"eslint-plugin-svelte": "^2.41.0"
},
"type": "module",
"dependencies": {
"@smui/data-table": "^7.0.0",
"lodash": "^4.17.21",
"marked": "^14.0.0",
"svrollbar": "^0.12.0",
"swagger-ui": "^5.17.14",
"swagger-ui-dist": "^5.17.14",
"swagger-ui-react": "^5.17.14",
"vike": "^0.4.177"
}
}