-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "pedal-app",
"version": "0.1.0",
"description": "PEDAL - Product Engineering Development Artifact Lifecycle",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"build": "tsc",
"test": "jest",
"validate-prd": "node scripts/validate-prd.js",
"validate-ast": "node scripts/validate-ast.js",
"generate-zod": "node scripts/generate-zod.js",
"generate-oas": "node scripts/generate-oas.js",
"pipeline": "node scripts/run-pipeline.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"@typespec/compiler": "^0.47.0",
"@typespec/http": "^0.47.0",
"@typespec/openapi": "^0.47.0",
"@typespec/rest": "^0.47.0",
"drizzle-orm": "^0.29.0",
"express": "^4.18.2",
"openai": "^4.0.0",
"pg": "^8.11.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@types/yaml-ast-parser": "^0.0.30",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"yaml-ast-parser": "^1.0.0"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForestMars/pedal.git"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"type": "commonjs",
"bugs": {
"url": "https://github.com/ForestMars/pedal/issues"
},
"homepage": "https://github.com/ForestMars/pedal#readme"
}