-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.41 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
{
"name": "defender-monitoring",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"**/*.{js,ts}\"",
"format": "prettier --check \"**/*.{ts,js}\"",
"format:fix": "prettier --write \"**/*.{ts,js}\"",
"sls:dev": "sls deploy --stage dev --config ",
"sls:prod": "sls deploy --stage prod --config ",
"sls:dev:print": "STAGE=dev ts-node",
"sls:prod:print": "STAGE=prod ts-node",
"sls:dev:clean": "sls remove --stage dev --config ",
"sls:prod:clean": "sls remove --stage prod --config "
},
"devDependencies": {
"@openzeppelin/defender-base-client": "^1.46.0",
"@sandbox-smart-contracts/core": "^0.0.1",
"@serverless/typescript": "^3.30.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"dotenv-cli": "^7.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.6.4",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"serverless": "^3.33.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"defender-serverless": "^1.1.0"
}
}