forked from matschik/component-party.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.69 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
{
"name": "component-party",
"private": true,
"version": "2.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --cache --ignore-path .gitignore --plugin-search-dir=. --write .",
"format:check": "prettier --ignore-path .gitignore --plugin-search-dir=. . --check",
"build:content": "node scripts/generateContent.js",
"build:progress": "node scripts/generateReadMeProgress.js",
"prepare": "husky install"
},
"dependencies": {
"@veljs/svelte": "^0.1.11",
"classnames": "^2.3.2",
"heroiconsvelte": "^0.1.5"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^16.0.3",
"@angular-eslint/eslint-plugin-template": "^16.0.3",
"@angular-eslint/template-parser": "^16.0.3",
"@aurelia/router": "2.0.0-beta.7",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-proposal-decorators": "^7.22.5",
"@matschik/lz-string": "^0.0.2",
"@stefanprobst/remark-shiki": "^2.2.1",
"@sveltejs/vite-plugin-svelte": "^2.4.2",
"@tailwindcss/typography": "^0.5.9",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"aurelia": "2.0.0-beta.7",
"aurelia-framework": "^1.4.1",
"autoprefixer": "^10.4.14",
"chokidar": "^3.5.3",
"codesandbox": "^2.2.3",
"eslint": "^8.44.0",
"eslint-plugin-ember": "^11.9.0",
"eslint-plugin-lit": "^1.8.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-qwik": "^1.2.4",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-solid": "^0.12.1",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-vue": "^9.15.1",
"esm": "^3.2.25",
"folder-hash": "^4.0.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"lodash.kebabcase": "^4.1.1",
"micache": "^2.4.1",
"pkg-dir": "^7.0.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"react": "^18.2.0",
"rehype-raw": "^6.1.1",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"shiki": "^0.14.3",
"svelte": "^4.0.1",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"unified": "^10.1.2",
"vite": "^4.3.9",
"vite-plugin-html": "^3.2.0",
"vue": "^3.3.4"
},
"overrides": {
"@stefanprobst/remark-shiki": {
"shiki": "0.12.1"
}
},
"lint-staged": {
"*.{js,ts,tsx,svelte,vue}": "eslint --cache --fix",
"*.{js,ts,tsx,svelte,vue,html,md,css,hbs}": "prettier --cache --write"
}
}