-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 859 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
30
31
{
"name": "clean-architecture",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"spot": "npx @airtasker/spot generate --contract ./endpoints/api.ts --generator openapi3 --language json --out ./specs",
"redoc": "npx redoc-cli build ./specs/api.json --output ./docs/api.html",
"docs": "npm run spot && npm run redoc",
"start": "node dist/app.js",
"watch": "tsc -w",
"dev": "npx nodemon dist/app.js"
},
"author": "Abdullah Adel",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.1",
"@types/pg": "^8.6.5"
},
"dependencies": {
"@airtasker/spot": "^1.9.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mysql2": "^2.3.3",
"pg": "^8.7.3",
"redoc-cli": "^0.13.16",
"typescript": "^4.7.4"
}
}