-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 971 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 971 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
37
38
39
{
"name": "labControl",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:utfpr/labControl.git",
"author": "Ivanilton Polato <ipolato@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
"api",
"web"
],
"scripts": {
"prepare": "husky",
"commit": "cz",
"services:up": "docker compose -f api/docker-compose.yml up -d && docker logs -f api_nestjs",
"services:down": "docker compose -f api/docker-compose.yml down",
"services:logs": "docker logs -f api_nestjs"
},
"lint-staged": {
"api/**/*.ts": [
"eslint --fix"
],
"web/**/*.{ts,tsx}": [
"echo 'Linting do frontend será configurado aqui futuramente'"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
}
}