-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "side-project",
"private": true,
"version": "0.0.12",
"type": "module",
"scripts": {
"dev": "vite",
"prepare": "husky install",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.ts,.svelte src --fix ",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "svelte-check --tsconfig ./tsconfig.json",
"tauri": "tauri",
"tauri:build": "tauri build",
"tauri:dev": "tauri dev",
"commit": "git-cz"
},
"dependencies": {
"@tauri-apps/api": "^1.3.0",
"moment": "^2.29.4",
"query-string": "^8.1.0",
"svelte-icons": "^2.1.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.0",
"@tauri-apps/cli": "^1.3.0",
"@tsconfig/svelte": "^3.0.0",
"@types/node": "^18.7.10",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.3",
"svelte": "^3.54.0",
"svelte-check": "^3.0.0",
"svelte-preprocess": "^5.0.0",
"svelte-routing": "^1.8.9",
"tslib": "^2.4.1",
"typescript": "^4.9.5",
"vite": "^4.2.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}