-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1021 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": "bump-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"command": "ts-node ./src/scripts/commander",
"format": "prettier --config .prettierrc --write .",
"build": "tsc -p ./tsconfig.json",
"documentation": "npm run documentation:create && npm run documentation:format",
"documentation:create": "npm run command documentEndpoints",
"documentation:format": "prettier --config .prettierrc --write ./swagger**.json ./generated"
},
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"openapi3-ts": "^3.2.0",
"prettier": "^2.8.4",
"ts-json-schema-generator": "^1.2.0",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1"
}
}