-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.17 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
{
"name": "@victormonserrat/workout",
"version": "0.0.1",
"description": "",
"author": "Victor Monserrat",
"private": true,
"license": "MIT",
"workspaces": [
"packages/deep-equals",
"packages/name-type",
"packages/either",
"packages/uuid",
"packages/ddd",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"format": "npm run format --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"postinstall": "npm run build --workspaces --if-present",
"preprepare": "npm run prepare --workspaces --if-present",
"start": "npm run start --workspaces --if-present",
"start:debug": "npm run start:debug --workspaces --if-present",
"start:dev": "npm run start:dev --workspaces --if-present",
"start:prod": "npm run start:prod --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:cov": "npm run test:cov --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"test:unit": "npm run test:unit --workspaces --if-present"
}
}