-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.34 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.34 KB
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
{
"name": "root",
"description": "danilucaci.com Personal Blog",
"private": true,
"version": "1.0.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"contributors": [
{
"name": "Dani Lucaci",
"email": "danilucaci@gmail.com",
"url": "https://www.danilucaci.com/"
}
],
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"commitlint": "17.0.3",
"husky": "8.0.1",
"lint-staged": "13.0.3"
},
"scripts": {
"bootstrap:e2e": "./bin/bootstrap-e2e.sh",
"dev:web": "yarn workspace web run dev",
"dev:api": "yarn workspace api run dev",
"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",
"cy:run:dev": "cd e2e && yarn run cy:run:dev",
"cy:run:prod": "cd e2e && yarn run cy:run:prod",
"cy:open:dev": "cd e2e && yarn run cy:open:dev",
"cy:open:prod": "cd e2e && yarn run cy:open:prod",
"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",
"pre:commit": "yarn workspaces run pre:commit",
"pre:push": "yarn workspaces run pre:push"
}
}