This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"private": true,
"scripts": {
"gr": "node local_garment/node_modules/@garment/cli/lib/cli.js",
"gr:local": "node packages/cli/lib/cli.js",
"build": "yarn gr build",
"build:ci": "yarn gr build --ts.configFile tsconfig.ci.json",
"watch": "yarn gr build --watch",
"clean": "yarn gr clean",
"lint": "yarn gr lint",
"test": "yarn gr test",
"test-debug": "node --inspect-brk local_garment/node_modules/.bin/garment test --runInBand",
"bump": "lerna version -m 'chore: Release' --conventional-commits",
"publish": "yarn gr publish",
"release": "yarn bump && yarn gr publish",
"release:pre": "yarn bump:pre && yarn gr publish:next",
"build:affected": "lerna changed -p | yarn gr build",
"postinstall": "cd local_garment && yarn"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^5.0.5",
"@types/globby": "^8.0.0",
"@types/jest": "^24.0.12",
"@types/node": "^11.11.3",
"@types/vfile-message": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^1.1.0",
"@typescript-eslint/parser": "^1.1.0",
"eslint": "5.9.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-monorepo": "0.2.1",
"eslint-plugin-node": "8.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "^1.3.1",
"lerna": "^3.7.1",
"lerna-update-wizard": "^0.16.0",
"lint-staged": "^8.1.0",
"prettier": "^1.19.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"workspaces": {
"packages": [
"packages/*"
]
}
}