-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.84 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "sanco-app",
"version": "1.0.0",
"author": {
"name": "Ikziriv",
"url": "https://github.com/ikziriv",
"email": "ikziriv.art@gmail.com"
},
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"validate": "npm-run-all --parallel type-check lint build",
"prepare": "husky install",
"svelte-check": "svelte-check"
},
"devDependencies": {
"@carbon/charts-svelte": "^0.49.6",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@pdftron/webviewer": "^8.1.0",
"@supabase/supabase-js": "^1.8.0",
"@sveltejs/adapter-node": "^1.0.0-next.0",
"@sveltejs/adapter-static": "^1.0.0-next.0",
"@sveltejs/adapter-vercel": "next",
"@sveltejs/kit": "next",
"@sveltejs/vite-plugin-svelte": "^1.0.0-next.24",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/jit": "^0.1.18",
"@tailwindcss/line-clamp": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"@tsconfig/svelte": "^2.0.1",
"@types/cookie": "^0.4.1",
"@types/node": "^16.11.1",
"@types/node-fetch": "^3.0.3",
"@types/nprogress": "^0.2.0",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.3.4",
"awesome-qr": "^2.1.4-rc.0",
"cookie": "^0.4.1",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"cssnano": "^5.0.8",
"d3": "^7.0.3",
"date-fns": "^2.24.0",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"fs-extra": "^10.0.0",
"googleapis": "^87.0.0",
"gravatar-url": "^4.0.1",
"husky": "^7.0.2",
"image-size": "^1.0.0",
"intl-messageformat": "^9.9.2",
"joi": "^17.4.2",
"js-cookie": "^3.0.1",
"lint-staged": "^11.1.2",
"marked": "^3.0.4",
"mdsvex": "^0.9.8",
"node-fetch": "^3.0.0",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"playwright": "^1.14.1",
"postcss": "^8.3.6",
"postcss-cli": "^9.0.1",
"postcss-cssnext": "^3.1.1",
"postcss-custom-media": "^8.0.0",
"postcss-import": "^14.0.2",
"postcss-load-config": "^3.1.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^10.1.3",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"reading-time": "^1.5.0",
"redaxios": "^0.4.1",
"rehype": "^12.0.0",
"rss": "^1.2.2",
"sass": "^1.43.2",
"svelte": "^3.44.0",
"svelte-awesome": "^2.3.2",
"svelte-check": "^2.2.6",
"svelte-click-outside": "^1.0.0",
"svelte-fa": "^2.3.3",
"svelte-forms-lib": "^1.10.7",
"svelte-i18n": "^3.3.10",
"svelte-intersection-observer": "^0.9.0",
"svelte-loader": "^3.1.2",
"svelte-pdf": "^1.0.9",
"svelte-preprocess": "^4.9.4",
"svelte-seo": "^1.3.0",
"svelte-spa-router": "^3.2.0",
"svelte-swipe": "^1.8.1",
"tailwindcss": "^2.2.15",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"vite": "^2.5.10",
"vite-imagetools": "^3.6.8",
"yargs": "^17.1.1",
"yup": "^0.32.9"
},
"type": "module",
"engines": {
"node": ">= 14.16.1"
},
"dependencies": {
"sharp": "^0.29.1",
"svelte-speedometer": "^1.1.0",
"vercel": "^23.1.2"
},
"husky": {
"hooks": {
"pre-commit": "CI=1 npm-run-all --parallel type-check && lint-staged"
}
},
"lint-staged": {
"*.+(js|ts|svelte)": [
"yarn run lint"
],
"*.+(js|json|ts|svelte)": [
"yarn run format"
]
}
}