-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "pano-setup-ui",
"version": "1.0.0",
"scripts": {
"postinstall": "bun scripts/copy-bootstrap.js",
"dev": "vite dev --host=0.0.0.0 --port=3002",
"dev:ui": "concurrently \"bun run watch:ui\" \"bun run dev\"",
"watch:ui": "sass src/styles/style.scss static/style.css --watch --load-path=. --load-path=node_modules --quiet-deps --no-source-map",
"build:ui": "sass src/styles/style.scss static/style.css --load-path=. --load-path=node_modules --quiet-deps --no-source-map",
"build": "vite build",
"package": "vite package",
"preview": "vite preview",
"lint": "npm-run-all -c lint:*",
"lint:prettier": "prettier -c . --config .prettierrc",
"format": "npm-run-all -c format:*",
"format:prettier": "prettier --write . --config .prettierrc"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@rollup/plugin-json": "^6.1.0",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/kit": "^2.49.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"concurrently": "^9.2.1",
"cookie": "^1.0.2",
"csrf": "^3.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte3": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"sass": "^1.94.2",
"svelte": "^5.43.14",
"svelte-preprocess": "^6.0.3",
"tippy.js": "^6.3.7",
"vite": "^7.2.4"
},
"type": "module",
"dependencies": {
"animate.css": "^4.1.1",
"bootstrap": "^5.3.8",
"svelte-i18n": "^4.0.1"
},
"trustedDependencies": [
"@parcel/watcher",
"es5-ext",
"esbuild",
"svelte-preprocess"
]
}