-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 997 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": "opensearch-with-grafana",
"version": "0.1.0",
"bin": {
"opensearch-with-grafana": "bin/opensearch-with-grafana.js"
},
"scripts": {
"lint": "run-p -l -c --aggregate-output lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run lint:prettier -- --write",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "18.11.11",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"aws-cdk": "2.53.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^26.4.2",
"prettier": "^2.6.2",
"ts-jest": "^26.2.0",
"ts-node": "^10.0.0",
"typescript": "~4.9.0"
},
"dependencies": {
"aws-cdk-lib": "2.53.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.16"
}
}