forked from Adamant-im/adamant-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 885 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
32
33
34
35
36
37
{
"name": "adamant-schema",
"version": "0.7.0",
"description": "ADAMANT OpenAPI Specification",
"scripts": {
"bundle": "redocly bundle specification/openapi.yaml -o dist/schema.json",
"start": "npm run bundle && ts-node app.ts",
"start:watch": "nodemon"
},
"author": "bludnic",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/swagger-ui-express": "^4.1.3",
"husky": "^8.0.1",
"nodemon": "^2.0.20",
"openapi-typescript-codegen": "^0.23.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@redocly/cli": "^1.0.0-beta.110",
"express": "^4.18.2",
"swagger-ui-express": "^4.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,yaml,js,ts}": [
"prettier --write ."
]
}
}