-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 688 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 688 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
39
40
41
42
43
{
"name": "root",
"private": true,
"packageManager": "pnpm@10.33.0",
"dependencies": {
"monaco-editor": "^0.53.0"
},
"scripts": {
"lint": "biome lint",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,html,css}": [
"biome check --write"
]
},
"pnpm": {
"overrides": {
"cipher-base": "1.0.7",
"tar-fs": "1.16.6"
},
"packageExtensions": {
"ibm_db": {
"dependencies": {
"node-gyp": "^11.5.0"
}
}
},
"onlyBuiltDependencies": [
"argon2",
"bcrypt",
"cpu-features",
"ibm_db",
"oracledb",
"ssh2"
]
}
}