-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "boston-ts-website",
"version": "0.0.0",
"description": "The website for BostonTS. Powered by React, Remix, TypeScript, and Vanilla Extract. ✨",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaKGoldberg/boston-ts-website"
},
"license": "MIT",
"author": {
"name": "Josh Goldberg",
"email": "[email protected]"
},
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"format": "prettier --write .",
"lint": "eslint . .*js --max-warnings 0",
"lint:knip": "knip",
"lint:md": "markdownlint \"**/*.md\" \".github/**/*.md\" --rules sentences-per-line",
"lint:packages": "pnpm dedupe --check",
"lint:spelling": "cspell \"**\" \".github/**/*\"",
"prepare": "husky",
"tsc": "tsc"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@remix-run/css-bundle": "^2.11.1",
"@remix-run/dev": "^2.11.1",
"@remix-run/node": "^2.11.1",
"@remix-run/react": "^2.11.1",
"@remix-run/server-runtime": "^2.11.1",
"@vanilla-extract/css": "^1.15.3",
"@vercel/remix": "^2.11.1",
"clsx": "^2.1.1",
"isbot": "^5.1.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.11.1",
"@types/eslint": "^8.56.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vanilla-extract/vite-plugin": "^4.0.13",
"cspell": "^8.14.2",
"eslint": "^8.56.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "^48.1.0",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-n": "^17.0.0",
"eslint-plugin-package-json": "^0.15.2",
"eslint-plugin-perfectionist": "^2.5.0",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-yml": "^1.12.2",
"husky": "^9.1.2",
"jsonc-eslint-parser": "^2.4.0",
"knip": "^5.27.0",
"lint-staged": "^15.2.7",
"markdownlint": "^0.34.0",
"markdownlint-cli": "^0.41.0",
"prettier": "^3.3.3",
"prettier-plugin-curly": "^0.2.2",
"prettier-plugin-packagejson": "^2.5.1",
"sentences-per-line": "^0.2.1",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.1",
"yaml-eslint-parser": "^1.2.2"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
}
}