-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.92 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.92 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "sample-confork-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npm run lint && cross-env NODE_PATH=. NODE_ENV=development ts-node-dev --respawn --pretty --transpile-only --ignore-watch schema/swaggerSchema.json index.ts",
"lint": "eslint --ext ts .",
"build": "tsc",
"sqema": "ts-node-dev cli/dbToOpenAPI",
"new-route": "ts-node-dev --transpile-only cli/routeCreator",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/i18n": "^0.13.1",
"@types/node": "^16.11.1",
"cross-env": "^7.0.3",
"openapi-types": "^9.3.0",
"ts-node-dev": "^1.1.8",
"@types/inquirer": "^8.1.3",
"typescript": "^4.4.4",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/swagger-ui": "^3.52.0",
"@types/swagger-ui-express": "^4.1.3",
"@types/pg": "^8.6.1",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-import-resolver-typescript": "^2.5.0"
},
"dependencies": {
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"aqs": "^1.0.6",
"aqs-typeorm": "^1.0.1",
"awilix": "^5.0.1",
"colors": "^1.4.0",
"confork-core": "^1.0.3",
"dotenv": "^10.0.0",
"express": "^5.0.0-alpha",
"i18n": "^0.13.3",
"inquirer": "^8.2.0",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"sqema": "^1.0.0",
"swagger-ui": "^4.1.0",
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.38",
"winston": "^3.3.3"
}
}