-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 893 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 893 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
{
"name": "rumsan",
"private": true,
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"lerna": "^5.1.4",
"nx": "^14.3.6",
"prettier": "^2.8.4"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"scripts": {
"build": "yarn lerna run build",
"dev": "yarn lerna run dev",
"test1": "yarn lerna run test",
"test1:watch": "yarn lerna run test:watch",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --runInBand --detectOpenHandles --watch",
"commit": "yarn git-cz"
}
}