-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.48 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
{
"name": "nexi",
"version": "2.0.1",
"description": "Nodejs rails-ish port",
"main": "index.js",
"scripts": {
"test": "jest"
},
"bin": {
"nexi-cli": "./bin/cli",
"nexi-migrate": "./bin/migrate",
"nexi": "./bin/entrypoint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tswayne/nexi.git"
},
"keywords": [
"rails",
"ruby on rails",
"framework"
],
"engines": {
"node": ">=16.0.0"
},
"homepage": "https://github.com/tswayne/nexi#readme",
"bugs": {
"url": "https://github.com/tswayne/nexi/issues"
},
"dependencies": {
"body-parser": "^1.20.3",
"class-bindall": "^1.0.0",
"compression": "^1.7.4",
"connect-redis": "^7.1.1",
"deepmerge": "^4.3.1",
"express": "^4.21.0",
"express-handlebars": "^8.0.1",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"http-errors": "^2.0.0",
"http-status": "^1.7.4",
"knex": "^3.1.0",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2",
"response-time": "^2.3.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"redis": "^4.7.0",
"sinon": "^18.0.1",
"supertest": "^7.0.0"
},
"files": [
"src/",
"bin/",
"index.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"author": "tswayne",
"license": "ISC",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}