-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 985 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
{
"name": "@bref.sh/constructs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "nodemon --watch src --ext ts,js --exec 'npx esbuild-node-tsc'",
"lint": "eslint .",
"prettify": "prettier --write --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"test": "vitest"
},
"peerDependencies": {
"aws-cdk-lib": "^2.55.0",
"constructs": "^10.0.0"
},
"dependencies": {
"@bref.sh/layers": "^2.0.95"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"aws-cdk-lib": "^2.55.0",
"constructs": "^10.0.0",
"esbuild-node-tsc": "^1.8.5",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"typescript": "5.0.4",
"vitest": "^0.32.2"
}
}