-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
118 lines (118 loc) · 3.78 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "hexapinod",
"version": "v1.1.0",
"homepage": "https://github.com/cecric/hexapinod#readme",
"description": "Hexagonal Architecture API Framework/Skeleton in TypeScript and using nodeJS with expressJS.",
"main": "dist/app.js",
"type": "module",
"directories": {
"lib": "lib"
},
"dependencies": {
"@socket.io/redis-adapter": "^7.1.0",
"ajv": "^8.8.2",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"chalk": "^5.0.0",
"commander": "^8.1.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-jsdoc-swagger": "^1.6.7",
"express-rate-limit": "^6.0.4",
"express-validator": "^6.14.0",
"express-winston": "^4.2.0",
"flatted": "^3.2.4",
"helmet": "^5.0.1",
"inquirer": "^8.1.2",
"jsonwebtoken": "^8.5.1",
"luxon": "^2.3.0",
"mysql": "^2.17.1",
"public-ip": "^5.0.0",
"redis": "^4.0.1",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.4.0",
"typeorm": "^0.2.41",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/express": "^4.17.7",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"apidoc": "^0.50.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^8.6.0",
"jsonlint": "^1.6.3",
"mocha": "^9.1.1",
"nodemon": "^2.0.15",
"tsc-alias": "^1.5.0",
"typedoc": "^0.22.10",
"typedoc-plugin-merge-modules": "^3.1.0",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"docs": "npx typedoc --tsconfig ./tsconfig.json --out ./documentation --cleanOutputDir --name Hexapinod --entryPointStrategy expand ./src",
"apidocs": "npx apidoc -i src/application/api -o api-documentation",
"test": "npm run test-lint && npm run test-unit",
"test-lint": "npx eslint . --ignore-pattern 'apidoc/' --ignore-pattern 'documentation/' --ignore-pattern 'api-documentation/' --ignore-pattern 'dist/' ; EXIT_STATUS=$? ; jsonlint -q ./config/**/*.json ./src/**/*.json ; EXIT_STATUS=$? ; exit $EXIT_STATUS ; ",
"test-unit": "npx tsc --project tsconfig.json --skipLibCheck && tsc-alias -p tsconfig.json -f && npx mocha -n enable-source-maps ./dist/src/application/tests/**/*.test.js",
"serve": "npx nodemon --watch src/ -e ts --ignore 'src/**/*.spec.ts' --exec 'npx tsc --project tsconfig.json --skipLibCheck && tsc-alias -p tsconfig.json -f && node --enable-source-maps ./dist/app.js server'",
"dev": "npm run serve",
"cli": "npx tsc --project tsconfig.json --skipLibCheck && tsc-alias -p tsconfig.json -f && node --enable-source-maps ./dist/app.js",
"build": "npx tsc --project tsconfig.json && npx tsc-alias -p tsconfig.json -f"
},
"repository": {
"type": "git",
"url": "github:cecric/hexapinod"
},
"keywords": [
"nodejs",
"api",
"template",
"framework",
"typescript",
"expressjs",
"hexagonal",
"api-rest",
"rest",
"hexagonal-architecture"
],
"contributors": [
{
"name": "Cédric LESEC",
"email": "[email protected]"
}
],
"private": false,
"license": "MIT license",
"bugs": {
"url": "https://github.com/cecric/hexapinod/issues",
"email": "[email protected]"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/cecric"
},
"engines": {
"node": ">=14"
},
"eslintIgnore": [
"dist",
"node_modules"
],
"apidoc": {
"name": "Hexapinod",
"version": "1.1.0",
"description": "Hexagonal Architecture API Framework/Skeleton in TypeScript and using nodeJS with expressJS.",
"title": "Hexapinod"
}
}