-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
33 lines (33 loc) · 931 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
{
"name": "momento-nodejs-example",
"version": "1.0.0",
"description": "Getting started with Momento sdk",
"main": "index.ts",
"scripts": {
"prebuild": "eslint . --ext .ts",
"build": "tsc",
"load-gen": "tsc && node dist/load-gen.js",
"request-coalescing": "tsc && node dist/request-coalescing.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "5.30.5",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "8.19.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.7.1",
"typescript": "4.9.5"
},
"dependencies": {
"@gomomento/sdk": "^1.101.1",
"hdr-histogram-js": "3.0.0"
}
}