-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.12 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
{
"name": "kcalcalc",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build": "vite build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"e2e": "playwright test",
"emulators:start": "firebase emulators:start",
"emulators:stop": "lsof -t -i:8080 -i:9000 -i:9099 -i:9199 -i:9090 | xargs kill -9",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"postinstall": "svelte-kit sync && pnpm dependency-report",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"package": "svelte-kit package",
"preview": "vite preview",
"dependency-report": "npx license-report --output=json > ./src/lib/dependency-report.json"
},
"dependencies": {
"@firebase/app-compat": "~0.1.39",
"@firebase/app-types": "~0.7.0",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.0",
"date-fns": "^2.30.0",
"firebase": "^9.23.0",
"fzf": "^0.5.2",
"linkedom": "^0.14.26",
"mathjs": "^10.6.4",
"uuid": "^8.3.2",
"workbox-precaching": "^6.6.0"
},
"devDependencies": {
"@iconify/json": "^2.2.295",
"@playwright/test": "^1.49.1",
"@square/svelte-store": "^0.1.5",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"as-comps": "^0.0.24",
"autoprefixer": "^10.4.20",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-svelte3": "^4.0.0",
"license-report": "^6.7.1",
"postcss": "^8.5.1",
"postcss-load-config": "^3.1.4",
"postcss-nesting": "^10.2.0",
"postcss-preset-env": "^7.8.3",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6",
"svelte": "^5.18.0",
"svelte-check": "^4.1.4",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.3",
"unplugin-icons": "^0.14.15",
"vite": "^5.4.4",
"vite-plugin-svelte-console-remover": "^1.0.10"
}
}