-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.84 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.84 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
{
"name": "pano-vanilla-theme",
"version": "1.0.0",
"scripts": {
"dev": "vite dev --host=0.0.0.0 --port 3000",
"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",
"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",
"generate-licenses": "node scripts/generate-licenses.js",
"postinstall": "bun scripts/bundle-internal-libs.js"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@jill64/universal-sanitizer": "^1.4.6",
"@panomc/sdk": "file:./src/pano-sdk",
"@sveltejs/adapter-node": "^5.5.4",
"@sveltejs/kit": "^2.57.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"adm-zip": "^0.5.17",
"animate.css": "^4.1.1",
"bootstrap": "^5.3.8",
"concurrently": "^9.2.1",
"cookie": "^1.1.1",
"copy-to-clipboard": "^3.3.3",
"csrf": "^3.1.0",
"date-fns": "^4.1.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte3": "^4.0.0",
"mime-types": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "~3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"sass": "^1.99.0",
"svelte": "^5.55.4",
"svelte-i18n": "^4.0.1",
"svelte-preprocess": "^6.0.3",
"tippy.js": "^6.3.7",
"uuid": "^14.0.0",
"vite": "^8.0.9"
},
"type": "module",
"trustedDependencies": [
"@parcel/watcher",
"es5-ext",
"esbuild",
"svelte-preprocess"
]
}