-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.34 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
63
64
{
"name": "carpet-config-creator",
"description": "A webapp for configuring Carpet rules",
"version": "0.1.0",
"type": "module",
"license": "GPL-2.0-only",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prepare": "npm-run-all prepare:*",
"prepare:light-theme": "smui-theme compile public/theme-light-raw.css -i src/theme",
"prepare:light-theme-post": "postcss public/theme-light-raw.css --no-map -o public/theme-light.css",
"prepare:dark-theme": "smui-theme compile public/theme-dark-raw.css -i src/theme/dark",
"prepare:dark-theme-post": "postcss public/theme-dark-raw.css --no-map -o public/theme-dark.css",
"format": "prettier --write --plugin-search-dir=. .",
"deploy": "sh deploy.sh"
},
"devDependencies": {
"@material/button": "^14.0.0",
"@material/elevation": "^14.0.0",
"@material/typography": "^14.0.0",
"@smui-extra/autocomplete": "^6.2.0",
"@smui/button": "^6.1.4",
"@smui/chips": "^6.1.4",
"@smui/circular-progress": "^6.1.4",
"@smui/dialog": "^6.1.4",
"@smui/fab": "^6.1.4",
"@smui/form-field": "^6.1.4",
"@smui/icon-button": "^6.1.4",
"@smui/list": "^6.1.4",
"@smui/menu": "^6.2.0",
"@smui/paper": "^6.1.4",
"@smui/radio": "^6.1.4",
"@smui/select": "^6.2.0",
"@smui/snackbar": "^6.1.4",
"@smui/switch": "^6.1.4",
"@smui/textfield": "^6.1.4",
"@smui/top-app-bar": "^6.1.4",
"@sveltejs/vite-plugin-svelte": "^1.4.0",
"@tsconfig/svelte": "^3.0.0",
"autoprefixer": "^10.4.17",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"postcss-pxtorem": "^6.1.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"sass": "^1.71.0",
"smui-theme": "^6.2.0",
"svelte": "^3.59.2",
"svelte-check": "^2.10.3",
"svelte-preprocess": "^4.10.7",
"tslib": "^2.6.2",
"typescript": "^4.9.5",
"vite": "^3.2.8"
},
"dependencies": {
"@fontsource/jetbrains-mono": "^4.5.12",
"@fontsource/roboto": "^4.5.8",
"material-icons": "^1.13.12",
"simple-icons": "^7.21.0"
}
}