-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.9 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.9 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
{
"name": "pano-panel-ui",
"version": "1.0.0",
"scripts": {
"dev": "cross-env DEV=true vite dev --host=0.0.0.0 --port=3001",
"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": "cross-env DEV=false vite build",
"postinstall": "bun scripts/bundle-internal-libs.js",
"preview": "cross-env DEV=false 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",
"bundle:libs": "bun scripts/bundle-internal-libs.js"
},
"husky": {
"hooks": {}
},
"devDependencies": {
"@jill64/universal-sanitizer": "^1.4.6",
"@panomc/sdk": "file:./src/pano-sdk",
"@rollup/plugin-json": "^6.1.0",
"@sveltejs/adapter-node": "^5.4.0",
"@sveltejs/kit": "^2.49.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tiptap/pm": "^3.11.0",
"adm-zip": "^0.5.16",
"bootstrap": "^5.3.8",
"chart.js": "^4.5.1",
"chartjs-adapter-date-fns": "^3.0.0",
"cheerio": "^1.1.2",
"concurrently": "^9.2.1",
"cookie": "^1.0.2",
"copy-to-clipboard": "^3.3.3",
"cross-env": "^10.1.0",
"csrf": "^3.1.0",
"date-fns": "^4.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte3": "^4.0.0",
"marked": "^17.0.1",
"mime-types": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"sass": "^1.94.2",
"svelte": "^5.46.1",
"svelte-i18n": "^4.0.1",
"svelte-preprocess": "^6.0.3",
"tippy.js": "^6.3.7",
"uuid": "^13.0.0",
"vite": "^7.2.4"
},
"type": "module",
"dependencies": {
"@appnest/masonry-layout": "^2.2.3",
"@fortawesome/fontawesome-free": "^6.7.2",
"@tiptap/core": "^3.11.0",
"@tiptap/extension-color": "^3.11.0",
"@tiptap/extension-image": "^3.11.0",
"@tiptap/extension-text-style": "^3.11.0",
"@tiptap/starter-kit": "^3.11.0",
"animate.css": "^4.1.1",
"canvas-confetti": "^1.9.4",
"confetti": "^2.0.6",
"popper.js": "^1.16.1",
"prosemirror-commands": "^1.7.1",
"prosemirror-dropcursor": "^1.8.2",
"prosemirror-gapcursor": "^1.4.0",
"prosemirror-history": "^1.5.0",
"prosemirror-keymap": "^1.2.3",
"prosemirror-model": "^1.25.4",
"prosemirror-schema-list": "^1.5.1",
"prosemirror-state": "^1.4.4",
"prosemirror-transform": "^1.10.5",
"prosemirror-view": "^1.41.3"
},
"trustedDependencies": [
"@parcel/watcher",
"es5-ext",
"esbuild",
"svelte-preprocess"
]
}