-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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": "api",
"main": "dist/main.js",
"version": "0.0.0",
"repository": "git@github.com:IcePanel/ice-openapi-node.git",
"author": "IcePanel <mail@icepanel.io>",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"gen": "run-s gen:refs gen:spec",
"gen:refs": "ts-node scripts/gen-refs.ts",
"gen:spec": "ts-node scripts/gen-spec.ts",
"dev": "nodemon"
},
"dependencies": {
"express": "^4.18.2",
"express-openapi-validator": "^4.13.8",
"source-map-support": "^0.5.21",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/js-yaml": "^4.0.5",
"js-yaml": "^4.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}