-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "mkedev",
"version": "0.1.0",
"private": true,
"description": "MKE.dev - Voice-first AI-powered civic intelligence platform for Milwaukee",
"scripts": {
"dev": "pnpm --filter web dev",
"build": "pnpm --filter web build",
"start": "pnpm --filter web start",
"lint": "pnpm -r lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"next": "^15.0.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=18.17.0"
},
"dependencies": {
"pmtiles": "^2.11.0"
},
"pnpm": {
"overrides": {
"pmtiles": "^2.11.0"
}
}
}