-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.07 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.07 KB
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
{
"name": "@bref.sh/constructs",
"main": "dist/index.js",
"repository": "brefphp/constructs",
"license": "MIT",
"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.100.0",
"constructs": "^10.0.0"
},
"dependencies": {
"@bref.sh/layers": "^3.0.0"
},
"devDependencies": {
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"aws-cdk-lib": "^2.250.0",
"constructs": "^10.6.0",
"esbuild-node-tsc": "^2.0.5",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"lodash": "^4.18.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
}
}