-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "connect-session-knex",
"description": "A knex.js session store for Express and Connect",
"version": "5.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"files": [
"dist/**/*",
"src/**/*"
],
"repository": {
"type": "git",
"url": "[email protected]:gx0r/connect-session-knex.git"
},
"bugs": {
"url": "https://github.com/gx0r/connect-session-knex/issues"
},
"homepage": "https://github.com/gx0r/connect-session-knex",
"scripts": {
"build": "tsc",
"example": "node examples/example-mjs.mjs",
"test": "NODE_OPTIONS=--enable-source-maps node --test",
"lint": "eslint src/ src/",
"lint-fix": "eslint --fix src/ test/"
},
"license": "ISC",
"dependencies": {
"knex": "3"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.18.2",
"express-session": "^1.18.0",
"globals": "^15.3.0",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"prettier": "^3.3.1",
"sqlite3": "^5.1.6",
"typescript": "^5.4.5"
}
}