-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "ts-apigen",
"version": "0.2.2",
"description": "typescript API code generator",
"main": "src/lib/index.ts",
"bin": {
"ts-apigen": "bin/ts-apigen.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc -p . && SET \"NODE_ENV=development\" && node bin/ts-apigen.js",
"build": "tsc -p .",
"build-publish": "tsc -p . && cd ui && npm run build && cd.. && npm publish",
"dev": "SET \"NODE_ENV=development\" && nodemon --watch \"src/lib/**/*.ts\" --exec \"ts-node\" src/bin/ts-apigen.ts "
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyeonQyu/ts-apigen.git"
},
"author": "hyeonQyu",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"bugs": {
"url": "https://github.com/hyeonQyu/ts-apigen/issues"
},
"homepage": "https://github.com/hyeonQyu/ts-apigen#readme",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"cheerio": "^1.0.0-rc.11",
"commander": "^9.3.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"prettier": "^2.6.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.31",
"nodemon": "^2.0.16",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}