forked from HannesOberreiter/btree_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.15 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "btree-node",
"version": "1.0.0",
"author": "Hannes Oberreiter",
"license": "GPL-3.0",
"private": true,
"keywords": [],
"main": "./dist/api/app.bootstrap.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"description": "Typescript, based on nodejs, express and knex.js, objections.js and datatables.net. The folder structure is based on <https://github.com/konfer-be/ts-express-typeorm-boilerplate>.",
"repository": {
"type": "git",
"url": "git+https://github.com/HannesOberreiter/btree_server.git"
},
"bugs": {
"url": "https://github.com/HannesOberreiter/btree_server/issues"
},
"homepage": "https://github.com/HannesOberreiter/btree_server#readme",
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"create:directories": "mkdir -p ./dist/logs",
"nodemon": "nodemon",
"dev:node": "ENVIRONMENT=development nodemon",
"dev:tsc": "tsc -watch",
"dev:knex": "ENVIRONMENT=development knex",
"dev:mail": "mjml mjml/* -o mails/ --config.beautify true --config.minify true",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"_moduleAliases": {
"@": "dist",
"@api": "dist/api",
"@cron": "dist/cron",
"@controllers": "dist/api/controllers",
"@datatables": "dist/api/datatables",
"@middlewares": "dist/api/middlewares",
"@models": "dist/api/models",
"@repositories": "dist/api/repositories",
"@routes": "dist/api/routes",
"@services": "dist/api/services",
"@validations": "dist/api/validations",
"@classes": "dist/api/types/classes",
"@enums": "dist/api/types/enums",
"@errors": "dist/api/types/errors",
"@interfaces": "dist/api/types/interfaces",
"@schemas": "dist/api/types/schemas",
"@utils": "dist/api/utils",
"@config": "dist/config",
"@servers": "dist/servers"
},
"dependencies": {
"ajv-formats": "^2.1.1",
"awilix": "^6.0.0",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"boom": "^7.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"datatables.net-editor-server": "^2.0.6",
"dayjs": "^1.10.7",
"dotenv": "^14.2.0",
"errorhandler": "^1.5.1",
"es6-promisify": "^7.0.0",
"express": "^4.17.2",
"express-rate-limit": "^6.2.0",
"express-useragent": "^1.0.15",
"express-validator": "^6.14.0",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"http-status": "^1.5.0",
"joi": "^17.5.0",
"jsonwebtoken": "^8.5.1",
"knex": "^1.0.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.2",
"objection": "^3.0.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"winston": "^3.4.0"
},
"devDependencies": {
"@hapi/boom": "^9.1.4",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.14",
"@types/nodemailer": "^6.4.4",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"mjml": "^4.11.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"typescript": "^4.5.5"
}
}