-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
32 lines (32 loc) · 909 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
{
"name": "momento-nodejs-example",
"version": "1.0.0",
"description": "Getting started with Momento sdk",
"main": "index.ts",
"scripts": {
"prebuild": "eslint . --ext .ts",
"build": "tsc",
"access-control": "tsc && node dist/access-control.js",
"validate-examples": "tsc && node dist/access-control.js",
"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.105.0",
"uuidv4": "6.2.13"
}
}