-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"contributors": [
{
"name": "Ramón Soler Hernán",
"email": "[email protected]"
},
{
"name": "Jose Ramón Serralvo Rojo",
"email": "[email protected]"
},
{
"name": "Verónica Velázquez Calleja ",
"email": "[email protected]"
},
{
"name": "Raúl Cátedra Martínez",
"email": "[email protected]"
}
],
"scripts": {
"dev": "yarn workspaces run dev",
"dev:web": "yarn workspace web run start",
"dev:api": "yarn workspace api run dev",
"build": "yarn workspaces run build",
"test:web:watch": "yarn workspace web run test:watch",
"test:api:watch": "yarn workspace api run test:watch",
"test:ci:all": "yarn workspaces run test:ci:all",
"lint:js": "yarn workspaces run lint:js",
"lint:js:fix": "yarn workspaces run lint:js:fix",
"lint:format": "yarn workspaces run lint:format",
"lint:format:check": "yarn workspaces run lint:format:check",
"precommit": "yarn workspaces run precommit"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitlint": "^11.0.0",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3"
}
}