-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "website",
"version": "0.0.0",
"description": "The website for the Josh project",
"author": "Évelyne Lachance <[email protected]> (https://evie.codes/)",
"contributors": [
"DanCodes <[email protected]>",
"Hezekiah Hendry <[email protected]>"
],
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf dist node_modules/.cache",
"lint": "eslint src --ext ts,tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"start": "vite",
"build": "vite build",
"update": "yarn upgrade-interactive",
"postinstall": "husky install"
},
"dependencies": {
"@mdx-js/rollup": "^2.3.0",
"@solidjs/meta": "^0.29.1",
"@solidjs/router": "^0.8.3",
"@tailwindcss/typography": "^0.5.10",
"@types/markdown-it": "^12.2.3",
"highlight.js": "^11.9.0",
"markdown-it": "^13.0.2",
"remark-gfm": "^3.0.1",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.5",
"solid-jsx": "^0.9.1",
"solid-markdown": "^1.2.2",
"solid-transition-group": "^0.2.3",
"typedoc-json-parser": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@joshdb/eslint-config": "1.1.0-next.feca273.0",
"@joshdb/ts-config": "1.1.0-next.feca273.0",
"@types/node": "^18.19.64",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"postcss": "^8.4.47",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"rimraf": "^5.0.10",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^4.5.5",
"vite-plugin-solid": "^2.10.2"
},
"repository": {
"type": "git",
"url": "https://github.com/josh-development/website.git"
},
"bugs": {
"url": "https://github.com/josh-development/website/issues"
},
"homepage": "https://github.com/josh-development/website",
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --ext ts,tsx"
},
"packageManager": "[email protected]"
}