-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.66 KB
/
package.json
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
54
{
"private": true,
"type": "module",
"sideEffects": false,
"workspaces": [
"packages/*"
],
"scripts": {
"release": "npm run build && lerna publish patch && git pull && git push",
"build": "lerna run build",
"lint": "eslint .",
"lint.fix": "npm run lint --fix",
"test": "jest --clearCache && concurrently 'npm:lint' 'jest'",
"test.all": "jest --clearCache && jest --testMatch '**/*.{it,spec}.ts'",
"test.all.watch": "jest --watchAll --testMatch '**/*.{it,spec}.ts'",
"test.focus": "jest --watchAll --testMatch '**/mongodbQuerier.{it,spec}.ts' --t 'shouldInsertOneAndCascadeOneToOne'",
"test.watch": "jest --watchAll",
"mongo-rs": "run-rs -v 7.0.2 --portStart 27027 -h 127.0.0.1 [-m]",
"container": "concurrently 'npm:mongo-rs' 'docker compose up'"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"concurrently": "^9.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"run-rs": "^0.7.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"author": "Roger Padilla"
}