forked from nmelhado/league-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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": "league-page",
"version": "1.2.1",
"homepage": "https://github.com/nmelhado/league-page",
"author": {
"name": "Nicholas Melhado",
"email": "[email protected]",
"url": "http://www.nmelhado.com/"
},
"funding": {
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/nmelhado"
},
"bugs": {
"url": "https://github.com/nmelhado/league-page/issues",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"prepare": "npm run vite-workaround && npm run smui-theme-light && npm run smui-theme-dark",
"vite-workaround": "node _helper/vite-workaround.js",
"smui-theme-light": "smui-theme compile static/smui.css -i src/theme",
"smui-theme-dark": "smui-theme compile static/smui-dark.css -i src/theme/dark",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@sveltejs/adapter-vercel": "next",
"@sveltejs/kit": "next",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.2.0",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"smui-theme": "^4.2.0",
"svelte": "^3.41.0"
},
"type": "module",
"dependencies": {
"@smui/button": "^4.2.0",
"@smui/data-table": "^4.2.0",
"@smui/dialog": "^4.2.0",
"@smui/drawer": "^4.2.0",
"@smui/icon-button": "^4.2.0",
"@smui/linear-progress": "^4.2.0",
"@smui/list": "^4.2.0",
"@smui/paper": "^4.2.0",
"@smui/tab": "^4.2.0",
"@smui/tab-bar": "^4.2.0",
"@smui/textfield": "^4.2.0",
"cookie": "^0.4.1",
"fast-xml-parser": "^3.19.0",
"fuzzyjs": "^5.0.1"
}
}