-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.14 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "readerspec",
"version": "0.1.0",
"description": "Generate Express.js APIs from human-readable markdown specifications",
"main": "dist/index.js",
"bin": {
"readerspec": "dist/index.js"
},
"scripts": {
"build": "npm run build:cli && npm run build:api",
"build:cli": "tsc",
"build:api": "npm run build:cli && node dist/index.js build",
"dev": "cd apps/api && npm install && npm run dev",
"dev:cli": "nodemon --watch src --ext ts --exec 'npm run build:cli && node dist/index.js'",
"start": "cd apps/api && npm start",
"check": "npm run build:cli && node dist/index.js check",
"translate": "npm run build:cli && node dist/index.js translate",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"depcheck": "npx depcheck"
},
"keywords": [
"api",
"generator",
"express",
"markdown",
"specification"
],
"author": "Tom Benbow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/readerspec/readerspec.git"
},
"homepage": "https://github.com/readerspec/readerspec#readme",
"bugs": {
"url": "https://github.com/readerspec/readerspec/issues"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^30.0.5",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.1",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"commander": "^14.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"openai": "^5.12.2",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^3.25.76"
}
}