-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.16 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
65
{
"name": "crust",
"private": true,
"license": "GPL-3.0-only",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"vue-devtools": "npx --no-install vue-devtools",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"eslint": "npx eslint \"{src/**/,}*.{js,ts,json,vue}\"",
"eslint-fix": "npm run eslint -- --fix",
"stylelint": "npx stylelint \"{src/**/,}*.{vue,scss,css}\"",
"stylelint-fix": "npm run stylelint -- --fix",
"clippy": "cargo clippy --manifest-path .\\src-tauri\\Cargo.toml"
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^3.0.2",
"@tauri-apps/api": "^1.2.0",
"@types/semver": "^7.3.13",
"async-mutex": "^0.4.0",
"bulma": "^0.9.4",
"bulma-switch": "^2.0.4",
"class-transformer": "^0.5.1",
"mime": "^3.0.0",
"pinia": "^2.0.29",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.8",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#faf75b6e8ef59633da41bc2da297536ea76bb231",
"ts-results": "^3.3.0",
"vue": "^3.2.45",
"vue-router": "^4.1.5",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@tauri-apps/cli": "^1.1.1",
"@types/mime": "^3.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.47.0",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/devtools": "^6.4.5",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-vue": "^9.7.0",
"sass": "^1.57.1",
"stylelint": "^14.15.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-scss": "^4.3.0",
"typescript": "^4.8.4",
"vite": "^3.2.4",
"vue-tsc": "^1.0.24"
}
}