-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.7 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.7 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
{
"name": "@grandlinex/kernel",
"version": "1.3.9",
"description": "GrandLineX is an out-of-the-box server framework on top of ExpressJs.",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "dist/cjs/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"scripts": {
"buildprep": "npm run build-mjs && npm run build-cjs && npm run build-fix",
"build-mjs": "tsc",
"build-cjs": "tsc -p tsconfig-cjs.json",
"build-fix": "node ./node_modules/@grandlinex/core/fix.js",
"lint": "eslint src",
"test": "jest --runInBand ",
"run": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/tests/run.ts",
"pack-dev": "npm version -no-git-tag-version prerelease && npm run buildprep && npm pack",
"test-converage": "jest --runInBand --ci --collectCoverage --coverageDirectory=\"./coverage\" --reporters=default --reporters=jest-junit",
"doc-converage": "jest --runInBand --ci --collectCoverage --coverageDirectory=\"./docs/coverage\" --reporters=default --reporters=jest-junit",
"makeDocs": "typedoc",
"openDocs": "npm run makeDocs",
"makeSpec": "swagger-mate"
},
"keywords": [
"typescript",
"framework",
"express",
"orm",
"server",
"backend"
],
"author": {
"name": "Elschnagoo"
},
"license": "BSD-3-Clause",
"dependencies": {
"@grandlinex/core": "1.3.1",
"@grandlinex/swagger-mate": "1.3.9",
"@types/jsonwebtoken": "9.0.10",
"@types/ms": "2.1.0",
"body-parser": "2.2.1",
"jsonwebtoken": "9.0.2",
"reflect-metadata": "0.2.2"
},
"peerDependencies": {
"@types/express": ">=5.0.6",
"axios": ">=1.12.0",
"express": ">=5.2.1"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "22.15.20",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.6.0",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "30.2.0",
"jest-junit": "16.0.0",
"prettier": "3.5.3",
"ts-jest": "29.4.6",
"ts-loader": "9.5.2",
"ts-node": "10.9.2",
"typedoc": "0.28.15",
"typescript": "5.9.2"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/GrandlineX/kernel.git"
}
}