-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "mfapi",
"version": "0.0.2",
"description": "",
"main": "dist/main.js",
"repository": "git@github.com:sammrai/mfapi.git",
"author": "sammrai",
"license": "MIT",
"private": true,
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/main.ts",
"dev": "ts-node-dev --poll --watch src -r tsconfig-paths/register ./src/main.ts",
"package": "run-s clean compile packing",
"packing": "ncc build ./dist/main.js -o output/",
"compile": "tsc -p .",
"clean": "rimraf dist output",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . --ext ts,tsx",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . --ext ts,tsx --fix",
"fix:prettier": "prettier --write src",
"watch-openapi": "nodemon --watch ./src/openapi.yaml --exec \"npx @redocly/cli build-docs ./src/openapi.yaml -o ./src/index.html --theme.openapi.disableSearch=true --theme.openapi.expandResponses='200,201'\"",
"serve-docs": "http-server src -p 3001",
"redoc": "npm-run-all --parallel watch-openapi serve-docs"
},
"devDependencies": {
"@types/node": "20.10.1",
"@types/swagger-ui-express": "^4.1.6",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"@vercel/ncc": "0.38.1",
"axios": "1.6.2",
"cheerio": "^1.0.0-rc.12",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"express": "^4.18.2",
"express-openapi-validator": "^5.1.1",
"prettier": "2.8.8",
"puppeteer-core": "21.5.2",
"swagger-ui-express": "^5.0.0",
"ts-node": "10.9.1",
"ts-node-dev": "2.0.0",
"typescript": "5.3.2",
"yamljs": "^0.3.0",
"yarn-run-all": "3.1.1",
"redoc-express": "^2.1.0"
}
}