-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 781 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 781 Bytes
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
{
"name": "dsql-example",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"prepare": "husky",
"toc": "markdown-toc -i"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/model",
"packages/db",
"packages/cli",
"packages/api"
],
"devDependencies": {
"@biomejs/biome": "2.0.5",
"@tsconfig/recommended": "^1.0.8",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"markdown-toc": "^1.2.0"
},
"dependencies": {
"@aws-lambda-powertools/metrics": "^2.22.0",
"@aws-lambda-powertools/tracer": "^2.22.0"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write"
],
"*.md": [
"npm run toc"
]
}
}