-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
{
"name": "urara",
"version": "0.0.1",
"license": "WTFPL",
"scripts": {
"clean": "node urara.js clean",
"rename": "node urara.js rename",
"dev:urara": "node urara.js watch",
"dev:kit": "export NODE_OPTIONS=--max_old_space_size=8192 && svelte-kit dev",
"dev": "npm-run-all -p -r dev:urara \"dev:kit -- {@} \" --",
"build:urara": "node urara.js build",
"build:kit": "export NODE_OPTIONS=--max_old_space_size=8192 && svelte-kit build",
"build": "npm-run-all -s build:urara build:kit clean",
"preview": "export NODE_OPTIONS=--max_old_space_size=8192 && svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@iconify-json/heroicons-outline": "^1.0.2",
"@iconify-json/heroicons-solid": "^1.0.2",
"@sveltejs/adapter-auto": "^1.0.0-next.22",
"@sveltejs/adapter-static": "^1.0.0-next.28",
"@sveltejs/kit": "^1.0.0-next.265",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"daisyui": "1.16.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.4.0",
"github-slugger": "^1.4.0",
"mdast-util-to-string": "^3.1.0",
"mdsvex": "^0.9.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-external-links": "^1.0.1",
"rehype-slug": "^5.0.1",
"remark": "^14.0.2",
"shiki": "^0.9.15",
"svelte": "^3.46.4",
"svelte-check": "^2.4.3",
"svelte-preprocess": "^4.10.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"unist-util-visit": "^4.1.0",
"unplugin-icons": "^0.13.1",
"vite": "^2.8.1",
"vite-plugin-windicss": "^1.7.0",
"workbox": "^0.0.0",
"workbox-cacheable-response": "^6.4.2",
"workbox-expiration": "^6.4.2",
"workbox-precaching": "^6.4.2",
"workbox-routing": "^6.4.2",
"workbox-strategies": "^6.4.2"
},
"type": "module"
}