forked from itswadesh/svelte-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.51 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
{
"name": "svelte-commerce",
"version": "0.0.2",
"scripts": {
"dev": "svelte-kit dev --host",
"build": "set NODE_ENV=production && svelte-kit build",
"preview": "svelte-kit preview",
"lint": "prettier --check . && eslint --ignore-path .gitignore .",
"format": "prettier --write .",
"start": "cross-env NODE_ENV=production node .",
"copy": "node devops/copy.js",
"live": "run-s build copy liveS",
"liveS": "node devops/live.js",
"format:check": "prettier --check './**/*.{js,ts,css,html,svelte}'"
},
"devDependencies": {
"@apollo/client": "^3.4.10",
"@sveltejs/adapter-begin": "^1.0.0-next.11",
"@sveltejs/adapter-netlify": "^1.0.0-next.25",
"@sveltejs/adapter-node": "^1.0.0-next.35",
"@sveltejs/adapter-static": "^1.0.0-next.13",
"@sveltejs/adapter-vercel": "^1.0.0-next.26",
"@sveltejs/kit": "1.0.0-next.159",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/jit": "^0.1.1",
"@tailwindcss/line-clamp": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"autoprefixer": "^10.3.3",
"concurrently": "^6.2.1",
"cookie-universal": "^2.1.5",
"cssnano": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-svelte3": "^3.2.0",
"graphql": "^15.5.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"postcss-load-config": "^3.1.0",
"prettier": "^2.3.2",
"prettier-plugin-svelte": "^2.4.0",
"shelljs": "^0.8.4",
"siema": "^1.5.1",
"ssh2shell": "^1.9.5",
"svelte": "^3.42.4",
"svelte-apollo": "^0.4.0",
"svelte-debugger": "^1.0.5",
"svelte-hero-icons": "^2.4.0",
"svelte-preprocess": "^4.8.0",
"svelte-swipe": "^1.8.1",
"svelte-toasts": "^1.1.2",
"tailwindcss": "^2.2.8",
"tailwindcss-rtl": "^0.7.3",
"tslib": "^2.3.1",
"typescript": "^4.4.2",
"vite": "^2.5.1"
},
"type": "module",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"@fontsource/fira-mono": "^4.5.0",
"@lukeed/uuid": "^2.0.0",
"cookie": "^0.4.1",
"cross-env": "^7.0.3",
"dayjs": "^1.10.6",
"dotenv": "^10.0.0",
"fathom-client": "^3.1.0",
"hash-it": "^5.0.2",
"node-fetch": "^2.6.1",
"universal-cookie": "^4.0.4"
}
}