-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
{
"name": "@leomotors/sv-components",
"description": "My personal UI/Components Library",
"version": "0.4.0",
"type": "module",
"author": "Leomotors",
"repository": "https://github.com/Leomotors/sv-components",
"license": "MIT",
"keywords": [
"svelte",
"components"
],
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build && node postbuild.js",
"package": "svelte-kit package && yarn tailwindcss -o package/styles.css -c tailwind.lib.config.cjs",
"preview": "svelte-kit preview",
"prepare": "svelte-kit sync",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check \"*.config.{cjs,js,ts}\" && prettier --check \"{src,tests}/**/*.{ts,svelte,html}\" && eslint src && eslint *.{cjs,js}",
"format": "prettier --write \"*.config.{cjs,js,ts}\" && prettier --write \"{src,tests}/**/*.{ts,svelte,html}\""
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.34",
"@sveltejs/kit": "1.0.0-next.348",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"globby": "^13.1.1",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.11",
"svelte": "^3.48.0",
"svelte-check": "^2.7.2",
"svelte-preprocess": "^4.10.6",
"svelte2tsx": "^0.5.10",
"tailwindcss": "^3.0.24",
"tslib": "^2.4.0",
"typescript": "^4.7.3"
}
}