-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 906 Bytes
/
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
{
"name": "@gomomento-poc/momento-sequelize-cache",
"version": "0.1.0",
"description": "Momento read-aside cache client for sequelize",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.198",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"jest": "^29.6.4",
"jest-extended": "^4.0.1",
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@gomomento/sdk": "^1.35.0",
"lodash": "4.17.21",
"sequelize": "^6.32.1",
"@mongodb-js/zstd": "^2.0.0"
}
}