-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.68 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.68 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
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": "@themost/express",
"version": "5.1.1",
"description": "@themost-framework express.js middleware",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "rimraf dist && rollup -c rollup.config.js -m",
"watch": "rimraf dist && rollup -c rollup.config.js -m -w",
"test": "jest",
"lint": "eslint src"
},
"engines": {
"node": ">=14.21.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/express.git"
},
"keywords": [
"@themost",
"@themost-framework",
"data",
"orm",
"express",
"middleware",
"expressjs"
],
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/express/issues"
},
"homepage": "https://github.com/themost-framework/express#readme",
"peerDependencies": {
"@themost/common": "^2.12.0",
"@themost/data": "^2",
"@themost/query": "^2",
"@themost/xml": "^2",
"express": "^5.2.1"
},
"dependencies": {
"lodash": "^4.17.23",
"multer": "2.0.2",
"on-headers": "^1.0.2",
"pluralize": "^7.0.0",
"q": "^1.5.1",
"rxjs": "^7.8.2",
"symbol": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/eslint-parser": "^7.27.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@rollup/plugin-babel": "^5.3.1",
"@themost/common": "^2.12.0",
"@themost/data": "^2.21.3",
"@themost/events": "^1.5.0",
"@themost/json-logger": "^1.3.0",
"@themost/query": "^2.14.11",
"@themost/sqlite": "^3.1.0",
"@themost/xml": "^2.5.2",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/multer": "^1.4.3",
"@types/passport": "^1.0.2",
"@types/q": "^1.5.2",
"@types/supertest": "^2.0.8",
"debug": "^4.1.1",
"eslint": "^9.24.0",
"eslint-plugin-jest": "^28.11.0",
"express": "^5.2.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"minimist": ">=0.2.1",
"multer": "2.0.2",
"on-headers": "^1.0.2",
"passport": "^0.6.0",
"passport-http-bearer": "^1.0.1",
"pluralize": "^7.0.0",
"q": "^1.5.1",
"rimraf": "^3.0.0",
"rollup": "^2.79.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-node-resolve": "^5.2.0",
"supertest": "^4.0.2",
"symbol": "^0.3.1",
"typescript": "^4.0.3"
}
}