-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mongo-lock-node",
"version": "2.0.0",
"description": "a distributed lock client backed by mongo",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --no-cache"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"testRegex": "/__tests__/.+\\.ts$",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"ts-node": "^10.9.1"
},
"devDependencies": {
"@clever/eslint-plugin": "^0.2.0",
"@clever/prettier-config": "^1.0.0",
"@types/jest": "^26.0.16",
"@types/jquery": "^3.5.14",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "^29.6",
"mongodb": "6.20",
"nodemon": "^2.0.7",
"prettier": "2.2.1",
"ts-jest": "^29.1.2",
"tsconfig-paths": "^3.9.0",
"typescript": "^5.9.3"
}
}