-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1009 Bytes
/
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
{
"name": "@centralpenn-incidents/incidents",
"version": "1.0.0",
"author": "Michael Tyson <[email protected]>",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"serve": "turbo run serve azurite",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"lint": "turbo run lint",
"dev": "turbo run dev azurite",
"dev:frontend": "turbo run dev:frontend azurite",
"install-all": "pnpm install -r && dotnet tool restore && dotnet husky install && dotnet restore",
"update-all": "pnpm up -r && dotnet tool update Husky && dotnet tool update dotnet-outdated-tool && dotnet tool update csharpier && dotnet outdated -u"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"turbo": "^2.0.4",
"typescript": "~5.5.2"
},
"overrides": {
"typescript": "$typescript"
},
"engines": {
"node": "20.x"
},
"packageManager": "[email protected]"
}