forked from EddieHubCommunity/good-first-issue-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.05 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
{
"name": "issue-finder",
"version": "2.17.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"run:server": "node build/index.js",
"package": "svelte-kit package",
"preview": "vite 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": "npx svelte-check --fail-on-hints",
"prepare": "husky install",
"test": "playwright test",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"devDependencies": {
"@histoire/plugin-svelte": "^0.12.4",
"@playwright/test": "^1.29.2",
"@popperjs/core": "^2.11.6",
"@sveltejs/adapter-node": "^1.1.0",
"@sveltejs/kit": "^1.0.11",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/svelte-query": "^4.24.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"histoire": "^0.12.4",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"mdsvex": "^0.10.6",
"postcss": "^8.4.21",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.2",
"prettier-plugin-svelte": "^2.9.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"svelte": "^3.55.1",
"svelte-check": "^3.0.2",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.4"
},
"type": "module",
"dependencies": {
"node-fetch": "^3.3.0",
"octokit": "^2.0.11"
},
"license": "MIT",
"lint-staged": {
"*.{cjs,js,ts,css,scss,svelte}": [
"eslint --fix",
"prettier --write --plugin-search-dir=."
]
}
}