-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.23 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
{
"name": "openapi-demo",
"version": "0.1.0",
"description": "OpenAPI Demo",
"author": "Alexander Broadbent",
"homepage": "https://abroadbent.com",
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --ext .ts",
"format": "prettier --write src && eslint src --ext .ts --fix",
"prebuild": "pnpm bundle:internal && pnpm bundle:public && pnpm generate",
"build": "tsc",
"dev": "NODE_ENV=local nodemon -r dotenv-flow/config --watch src --files src/index.ts",
"test": "jest",
"preview": "concurrently \"http-server docs/public\" \"open http://127.0.0.1:8080\"",
"verify": "pnpm validate && pnpm build && pnpm lint",
"validate": "redocly lint internal --lint-config error",
"bundle:public": "redocly bundle public -o src/config/openapi-public.bundle.json",
"bundle:internal": "redocly bundle internal -o src/config/openapi-internal.bundle.json",
"generate": "openapi-typescript src/config/openapi-internal.bundle.json -o ./src/types/generated/openapi-schema.ts"
},
"repository": {
"type": "git",
"url": "url+https://github.com/AlexBroadbent/openapi-demo.git"
},
"bugs": {
"url": "https://github.com/AlexBroadbent/openapi-demo/issues"
},
"devDependencies": {
"@faker-js/faker": "8.2.0",
"@redocly/cli": "1.5.0",
"@side/jest-runtime": "1.1.0",
"@swc/core": "1.3.86",
"@swc/jest": "0.2.29",
"@tsconfig/node18": "18.2.2",
"@types/dotenv-flow": "3.3.1",
"@types/jest": "29.5.5",
"@types/node": "18.17.1",
"@types/node-fetch": "^2.6.6",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"concurrently": "8.2.2",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"http-server": "14.1.1",
"jest": "29.7.0",
"nodemon": "3.0.2",
"openapi-typescript": "6.6.1",
"prettier": "2.8.8",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"@fastify/cors": "^8.4.1",
"dotenv-flow": "3.3.0",
"fastify": "4.23.2",
"fastify-openapi-glue": "2.6.7",
"fastify-plugin": "4.5.1",
"node-fetch": "2.7.0",
"pino": "8.15.1",
"pino-pretty": "10.2.0"
},
"engines": {
"node": "18"
}
}