forked from EddieHubCommunity/good-first-issue-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.08 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
{
"name": "issue-finder",
"version": "2.9.1",
"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.11.6",
"@playwright/test": "^1.27.1",
"@popperjs/core": "^2.11.6",
"@sveltejs/adapter-node": "1.0.0-next.99",
"@sveltejs/kit": "1.0.0-next.528",
"@tailwindcss/typography": "^0.5.7",
"@types/cookie": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.4.13",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.2.1",
"histoire": "^0.11.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"mdsvex": "^0.10.6",
"postcss": "^8.4.18",
"postcss-load-config": "^3.1.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"svelte": "^3.52.0",
"svelte-check": "^2.9.2",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.1",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"vite": "^3.2.1"
},
"type": "module",
"dependencies": {
"cookie": "^0.5.0",
"node-fetch": "^2.6.7",
"octokit": "^2.0.10"
},
"license": "MIT",
"lint-staged": {
"*.{cjs,js,ts,css,scss,svelte}": [
"eslint --fix",
"prettier --write --plugin-search-dir=."
]
}
}