-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.89 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
{
"name": "ivorytower",
"version": "3.0.0-beta",
"private": true,
"license": "UNLICENSED",
"dependencies": {
"@tiptap/extension-color": "^2.10.3",
"@tiptap/extension-font-family": "^2.10.3",
"@tiptap/extension-image": "^2.10.3",
"@tiptap/extension-link": "^2.10.3",
"@tiptap/extension-list-item": "^2.10.3",
"@tiptap/extension-ordered-list": "^2.10.3",
"@tiptap/extension-placeholder": "^2.10.3",
"@tiptap/extension-table": "^2.10.3",
"@tiptap/extension-table-cell": "^2.10.3",
"@tiptap/extension-table-header": "^2.10.3",
"@tiptap/extension-table-row": "^2.10.3",
"@tiptap/extension-text-style": "^2.10.3",
"@tiptap/extension-typography": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@travisspomer/tidbits": "^1.0.9"
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.2",
"@types/html-minifier": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-plugin-svelte": "^2.33.1",
"html-minifier": "^4.0.0",
"sass": "^1.66.1",
"svelte": "^4.2.1",
"svelte-preprocess": "^5.0.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"type": "module",
"engines": {
"node": ">= 12.17.0"
},
"scripts": {
"start": "vite dev --port 80 --open --host",
"startwithapi": "swa start --verbose info --api-location ./api --port 4280 http://localhost:7070 --run=\"npm exec vite dev -- --port 7070\" --open",
"startwithliveapi": "swa start --verbose info --api-location IGNORED --api-devserver-url https://api.ivorytower.com --port 4280 http://localhost:7070 --run=\"npm exec vite dev -- --port 7070\" --open",
"startwithvs": "swa start --verbose info --api-location http://localhost:7071 --port 4280 http://localhost:7070 --run=\"npm exec vite dev -- --port 7070\"",
"build": "vite build",
"serve": "vite preview --port 80 --open --host"
}
}