-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "notarial-api",
"version": "1.0.6",
"private": true,
"workspaces": [
"api",
"worker",
"dynamic-content"
],
"scripts": {
"api": "yarn workspace @notarialapi/api",
"worker": "yarn workspace @notarialapi/worker",
"dynamic-content": "yarn workspace @notarialapi/dynamic-content",
"lint": "yarn workspaces foreach run lint",
"test": "yarn workspaces foreach run test",
"release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"semantic-release": "^22.0.6"
},
"packageManager": "yarn@3.6.4",
"dependencies": {
"dotenv": "^16.3.1",
"handlebars": "^4.7.8"
},
"resolutions": {
"follow-redirects": "1.15.4",
"ip": "2.0.1"
},
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x"
]
}
}