This repository was archived by the owner on May 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "website",
"version": "1.0.0",
"workspaces": [
"projects/*"
],
"description": "Documentation for the Josh project",
"author": "Évelyne Lachance <eslachance@gmail.com> (https://evie.codes/)",
"contributors": [
"Hezekiah Hendry <real.shadow.nova@gmail.com>"
],
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"clean": "rimraf dist node_modules/.cache",
"import-docs": "node scripts/import-docs.mjs",
"docs": "yarn workspaces run docs && yarn import-docs",
"lint": "eslint src --ext ts,tsx --fix",
"format": "prettier --write src/**/*.{ts,tsx}",
"update": "yarn upgrade-interactive --latest",
"start": "vite",
"build": "vite build",
"dev": "yarn build && yarn start",
"serve": "vite preview",
"update-submodules": "git pull --recurse-submodules && git submodule update --remote --recursive",
"prepare": "husky install"
},
"dependencies": {
"solid-js": "^1.7.5"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@mdx-js/rollup": "^2.3.0",
"@sapphire/eslint-config": "^4.4.2",
"@sapphire/ts-config": "^3.3.4",
"@sapphire/utilities": "^3.11.2",
"@types/node": "^18.16.9",
"@types/tailwindcss": "^3.0.11",
"autoprefixer": "^10.4.14",
"colorette": "^2.0.20",
"eslint": "~8.40.0",
"highlight.js": "^11.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"ora": "^6.3.0",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"solid-app-router": "^0.4.2",
"solid-mdx": "^0.0.6",
"tailwindcss": "^3.3.2",
"typedoc": "^0.24.7",
"typescript": "^4.9.5",
"vite": "^4.3.5",
"vite-plugin-solid": "^2.7.0"
},
"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": "eslint --fix --ext ts"
}
}