-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
88 lines (88 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "welcome-to-my-garden",
"license": "GPL-3.0-or-later",
"description": "a platform allowing citizens to put their garden freely at disposal as a rudimentary campsite to travelers.",
"version": "3.3.0",
"engines": {
"node": "20"
},
"scripts": {
"dev": "vite --host",
"dev:staging": "vite --mode staging --host",
"dev:push": "vite --mode devpush --host",
"dev:prod": "vite --mode production --host",
"build": "vite build",
"build:demo": "vite build --mode development",
"build:prod": "vite build --mode production",
"build:staging": "vite build --mode staging",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:unit": "vitest",
"check": "svelte-kit sync && svelte-check --compiler-warnings 'security-anchor-rel-noreferrer:ignore' --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --compiler-warnings 'security-anchor-rel-noreferrer:ignore' --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"firebase:demo": "firebase --project demo-test emulators:start",
"firebase:demo-seed": "firebase --project demo-test emulators:exec --ui api/seeders/simple.js",
"firebase:debug": "firebase --project demo-test emulators:start --inspect-functions",
"firebase:staging": "firebase --project wtmg-dev emulators:start --only functions",
"firebase:staging-all": "firebase --project wtmg-dev emulators:start",
"firebase:staging-push": "STAGING=true firebase --project wtmg-dev emulators:exec --ui api/seeders/simple.js",
"stripe:staging": "stripe listen --events customer.subscription.deleted,customer.subscription.updated,invoice.finalized,invoice.created,invoice.paid,payment_intent.processing --forward-to http://127.0.0.1:5001/wtmg-dev/europe-west1/stripeWebhooks"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^3.0.4",
"@playwright/test": "^1.48.1",
"@stripe/stripe-js": "^4.8.0",
"@sveltejs/adapter-static": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tmcw/togeojson": "^5.8.1",
"@turf/turf": "^7.1.0",
"@types/lodash-es": "^4.17.12",
"@types/md5": "^2.3.5",
"@types/nprogress": "^0.2.3",
"@types/smoothscroll-polyfill": "^0.3.4",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@zerodevx/svelte-img": "^2.1.2",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"file-selector": "^1.1.0",
"firebase": "^10.14.1",
"gmail-getter": "^2.1.0",
"i18n-iso-countries": "^7.12.0",
"is-uic-location-code": "^0.0.1",
"iso-639-1": "^3.1.3",
"lodash-es": "^4.17.21",
"maplibre-gl": "^1.15.3",
"md5": "^2.3.0",
"nprogress": "^0.2.0",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3",
"smoothscroll-polyfill": "^0.4.4",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"svelte-i18n": "^4.0.0",
"svelte-preprocess": "^6.0.3",
"svelte-simple-modal": "^1.6.2",
"svelte-stripe": "^1.2.1",
"svg-inline-loader": "^0.8.2",
"tslib": "^2.8.0",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"ua-parser-js": "2.0.0-beta.1",
"vite": "^5.0.0",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-mkcert": "^1.17.6",
"vitest": "^2.1.3"
},
"type": "module",
"packageManager": "yarn@3.5.0"
}