generated from eisberg-labs/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "@eisberg-labs/next-mongoose-session",
"private": false,
"publishConfig": {
"access": "public"
},
"version": "1.1.1",
"description": "Enables mongodb cached session for nextjs api routes and ssr pages (static and dynamic)",
"main": "dist/index.js",
"files": [
"dist/**",
"package.json"
],
"scripts": {
"test": "jest",
"lint": "eslint src/**/*",
"prettier": "prettier --write \"./(src|tests)/**/*.ts\"",
"tsc": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run prettier && npm run tsc"
},
"repository": "https://github.com/eisberg-labs/next-mongoose-session.git",
"author": {
"name": "Ana Bujan - Eisberg Labs",
"email": "[email protected]",
"url": "https://www.eisberg-labs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/eisberg-labs/next-mongoose-session/issues"
},
"homepage": "https://github.com/eisberg-labs/next-mongoose-session#readme",
"peerDependencies": {
"mongoose": "^6.7.0",
"next": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3"
}
}