-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"contributors": [
{
"name": "Dani Lucaci",
"email": "[email protected]",
"url": "https://www.danilucaci.com/"
},
{
"name": "Joan Carrion",
"email": "[email protected]"
},
{
"name": "Fabrizio Ervini",
"email": "[email protected]",
"url": "https://fabrizioervini.com/"
}
],
"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"
}
}