-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 870 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 870 Bytes
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
{
"name": "codeforphilly-rewrite",
"version": "0.0.0",
"private": true,
"description": "Modernization of laddr / codeforphilly.org on Fastify + Vite/React + gitsheets.",
"type": "module",
"engines": {
"node": ">=22.22.0 <23"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n api,web -c blue,magenta \"npm run -w apps/api dev\" \"npm run -w apps/web dev\"",
"build": "npm run build --workspaces --if-present",
"type-check": "npm run type-check --workspaces --if-present",
"lint": "eslint .",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^9.2.1",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"typescript-eslint": "^8.59.3",
"vitest": "^4.1.6"
}
}