-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.61 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.61 KB
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
{
"name": "makers-website",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"deploy": "node ./gh-pages.js",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --ignore-path .gitignore",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=.",
"lint:fix": "eslint --fix",
"prelint": "npm run format",
"prepare": "husky install"
},
"devDependencies": {
"@sveltejs/adapter-static": "^1.0.0-next.20",
"@sveltejs/kit": "next",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"dayjs": "^1.10.7",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.4.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"js-yaml": "^4.1.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"rehype-highlight": "^5.0.2",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.5",
"svelte-preprocess": "^4.10.3",
"to-vfile": "^7.2.3",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"unified": "^10.1.1"
},
"type": "module",
"lint-staged": {
"*.{js,ts,svelte}": [
"npm run check",
"npm run lint:fix"
]
},
"dependencies": {
"@dicebear/avatars": "^4.10.2",
"@dicebear/avatars-bottts-sprites": "^4.10.2",
"@fontsource/fira-mono": "^4.5.2",
"@fontsource/inter": "^4.5.4"
}
}