-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 2.22 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": "cardmesh-web-app",
"version": "1.0.4",
"description": "CardMesh is an app aimed at modernizing the sharing of business cards within a company. It displays digital business cards in a web browser, accessible via NFC tags, QR codes, or direct URLs.",
"author": "Mathias Reker",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:CardMesh/web-app.git"
},
"bugs": {
"url": "https://github.com/CardMesh/web-app/issues"
},
"homepage": "https://github.com/CardMesh/web-app",
"scripts": {
"start": "node build",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"build:bootstrap": "cross-env mkdir -p ./static/js/ && cp ./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js ./static/js/",
"build:favicons": "real-favicon generate faviconDescription.json faviconData.json static/ && rm faviconData.json",
"test": "playwright test",
"test:unit": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"format": "eslint . --fix",
"lint": "eslint ."
},
"devDependencies": {
"@fontsource/fira-mono": "^5.0.12",
"@neoconfetti/svelte": "^2.2.1",
"@playwright/test": "^1.42.1",
"@popperjs/core": "^2.11.8",
"@rodneylab/svelte-social-icons": "^0.0.28",
"@sveltejs/adapter-vercel": "^5.1.0",
"@sveltejs/kit": "^2.5.2",
"@types/cookie": "^0.6.0",
"@zerodevx/svelte-toast": "^0.9.5",
"bootstrap": "^5.3.3",
"chart.js": "^4.4.2",
"country-telephone-data": "^0.6.3",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-svelte": "^2.35.1",
"js-cookie": "^3.0.5",
"leaflet": "^1.9.4",
"moment-timezone": "^0.5.45",
"qrcode-svg": "^1.1.0",
"sass": "^1.71.1",
"semver": "^7.6.0",
"svelte": "^4.2.12",
"svelte-check": "^3.6.6",
"svelte-feather-icons": "^4.1.0",
"svelte-icons-pack": "^2.1.0",
"svelte-preprocess": "^5.1.3",
"svelte-seo": "^1.6.0",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vitest": "^1.3.1"
}
}