-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 994 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 994 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
31
32
33
34
{
"name": "epilot-app-schufa",
"version": "0.0.1",
"description": "Simple API to check a schufa report for a given person.",
"main": "index.js",
"scripts": {
"build": "turbo build",
"console": "sst console",
"deploy:prod": "sst deploy --stage prod",
"test": "turbo test",
"dev": "sst dev",
"sst": "sst",
"remove": "sst remove",
"typecheck": "tsc --noEmit",
"openapi": "openapi read openapi.yml --json > api/openapi.json",
"typegen": "openapi typegen --backend openapi.yml > api/openapi.d.ts",
"schufa-typegen": "openapi typegen api/schufa/schufa.openapi.json --client -b '/* eslint-disable */' > api/schufa/schufa.d.ts",
"lint": "biome check",
"lint:fix": "biome check --fix"
},
"author": "epilot GmbH",
"license": "MIT",
"dependencies": {
"sst": "^3.17.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tsconfig/node22": "^22.0.1",
"turbo": "^2.5.5",
"openapicmd": "^2.6.2",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.0.0"
}