forked from EddieHubCommunity/good-first-issue-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.83 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
{
"name": "issue-finder",
"version": "3.0.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"
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@popperjs/core": "^2.11.6",
"@sveltejs/adapter-node": "1.0.0-next.88",
"@sveltejs/kit": "1.0.0-next.476",
"@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.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^3.2.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"mdsvex": "^0.10.6",
"postcss": "^8.4.16",
"postcss-load-config": "^3.1.1",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"prettier-plugin-tailwindcss": "^0.1.13",
"svelte": "^3.50.0",
"svelte-check": "^2.9.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.1.8",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"vite": "^3.1.0"
},
"type": "module",
"dependencies": {
"cookie": "^0.5.0",
"node-fetch": "^2.6.7",
"octokit": "^2.0.7"
},
"license": "MIT",
"lint-staged": {
"*.{cjs,js,ts,css,scss,svelte}": [
"eslint --fix",
"prettier --write --plugin-search-dir=."
]
}
}