-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1006 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 1006 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
{
"name": "dbx-js-tools",
"private": true,
"workspaces": [
"packages/bson-bench",
"packages/evergreen-timestamp-utils"
],
"devDependencies": {
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.10",
"@types/node": "^24.6.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"chai": "^4.5.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"eslint-plugin-unused-imports": "^4.2.0",
"mocha": "^11.7.3",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-cached-transpile": "^0.0.6"
},
"scripts": {
"check:eslint": "ESLINT_USE_FLAT_CONFIG=false eslint -v && ESLINT_USE_FLAT_CONFIG=false eslint --max-warnings=0 --ext '.js,.ts,.mts' packages/**/src packages/**/test",
"fix:eslint": "npm run check:eslint -- --fix"
}
}