-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.15 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
89
90
91
92
93
{
"name": "svelte-commerce",
"version": "2022.05.10",
"scripts": {
"dev": "svelte-kit dev --host",
"gen": "graphql-codegen --require dotenv/config",
"build": "cross-env NODE_OPTIONS=--max-old-space-size=7680 NODE_ENV=production svelte-kit build",
"copy": "node devops/copy",
"liveS": "node devops/live",
"prod": "run-s build copy",
"live": "run-s build copy liveS",
"start-node": "cross-env NODE_ENV=production node build/index.js",
"package": "svelte-kit package",
"start": "cross-env HOST=0.0.0.0 svelte-kit preview --host -p 2020",
"quality": "npm run quality:eslint && npm run quality:prettier && npm run quality:ts",
"quality:fix": "prettier --ignore-path .gitignore --write --plugin-search-dir=. . && npm run quality:eslint --fix",
"quality:eslint": "eslint --ignore-path .gitignore .",
"quality:prettier": "prettier --ignore-path .gitignore --check --plugin-search-dir=. .",
"quality:ts": "svelte-check --tsconfig ./tsconfig.json",
"quality:ts:w": "npm run quality:ts --watch",
"update": "npm exec -- npx ncu -u -p yarn"
},
"devDependencies": {
"@fontsource/fira-mono": "^4.5.8",
"@playwright/test": "^1.20.0",
"@silintl/svelte-google-places-autocomplete": "1.1.6",
"@sveltejs/adapter-auto": "next",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.2",
"@types/cookie": "0.4.1",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"autoprefixer": "^10.4.5",
"cl-editor": "^2.3.0",
"cssnano": "^5.1.7",
"npm-run-all": "4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.4",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.10",
"quill": "^1.3.7",
"shelljs": "0.8.5",
"ssh2shell": "1.9.10",
"supabase": "0.5.0",
"svelte": "^3.47.0",
"svelte-calendar": "3.1.6",
"svelte-carousel": "^1.0.17-rc4",
"svelte-geolocation": "^0.3.0",
"svelte-hero-icons": "^4.1.1",
"svelte-select": "4.4.7",
"svelte-swipe": "^1.8.2",
"svelte-timeago": "^0.1.2",
"svelte-toasts": "^1.1.2",
"svelte-tree-select": "1.1.8",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.24",
"tailwindcss-rtl": "^0.9.0",
"to-words": "^3.2.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3"
},
"type": "module",
"dependencies": {
"@beyonk/async-script-loader": "^2.0.0",
"@beyonk/svelte-googlemaps": "3.2.0",
"@kitql/all-in": "0.6.3",
"@supabase/supabase-js": "1.35.2",
"@sveltejs/adapter-node": "next",
"@sveltejs/kit": "1.0.0-next.324",
"cookie": "^0.5.0",
"cookie-universal": "^2.1.5",
"cross-env": "7.0.3",
"dayjs": "^1.11.1",
"graphql": "16.3.0",
"graphql-tag": "^2.12.6",
"hash-it": "^5.0.2",
"leaflet": "^1.8.0",
"node-fetch": "^3.2.3",
"simple-svelte-autocomplete": "^2.4.0",
"svelte-preprocess": "^4.10.6",
"universal-cookie": "^4.0.4",
"uuid": "8.3.2"
},
"volta": {
"node": "17.4.0",
"yarn": "1.22.17",
"pnpm": "6.32.1"
}
}