-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
66
67
68
69
70
{
"name": "tiktok-harbor",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"depcheck": "unimported",
"dev": "vite dev -- --open",
"format": "prettier --check src",
"format:fix": "prettier --write --list-different src",
"lint": "prettier --check . && eslint .",
"prepare": "husky install",
"preview": "vite preview",
"ionic:build": "pnpm build",
"ionic:serve": "pnpm dev"
},
"dependencies": {
"@capacitor/android": "^5.7.0",
"@capacitor/core": "^5.7.0",
"@capacitor/ios": "^5.7.0",
"@types/node": "^20.11.17",
"bits-ui": "^0.18.1",
"clsx": "^2.1.0",
"jszip": "^3.10.1",
"lucide-svelte": "^0.325.0",
"mode-watcher": "^0.2.1",
"tailwind-merge": "^2.2.1",
"tailwind-variants": "^0.2.0"
},
"devDependencies": {
"@capacitor/cli": "^5.7.0",
"@ionic/cli": "^7.2.0",
"@sveltejs/adapter-auto": "^3.1.1",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@types/eslint": "8.56.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"postcss-load-config": "^5.0.3",
"prettier": "^3.2.5",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"svelte": "^4.2.10",
"svelte-check": "^3.6.4",
"svelte-eslint-parser": "^0.33.1",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unimported": "^1.31.1",
"vite": "^5.1.1"
},
"lint-staged": {
"*.{svelte,js,ts}": [
"prettier --write",
"eslint --fix"
]
}
}