-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "root",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"preinstall": "node ./scripts/ensure-yarn.js",
"clean": "lerna run clean",
"build": "lerna run build",
"lint": "lerna run lint",
"check-style": "lerna run check-style",
"check-style:fix": "lerna run check-style:fix",
"build:dev": "tsc -b ./tsconfig.monorepo.json",
"test:watch": "jest",
"test": "lerna run test -- --ci --coverage --maxWorkers=2 --passWithNoTests",
"dev": "node ./scripts/dev.js",
"ci": "npm run build && npm run test",
"prerelease": "npm run build && npm run test"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/jest": "^24.0.23",
"conventional-changelog": "^4.0.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-watch-typeahead": "^0.6.1",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"lerna": "^6.5.1",
"lint-staged": "^12.5.0",
"prettier": "^2.0.2",
"spawn-command": "0.0.2-1",
"ts-jest": "^26.4.0",
"tslib": "^2.8.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint --edit $1",
"pre-commit": "lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"packages/*/{src,test}/**/*.{ts,tsx,js,json}": [
"prettier --write",
"tslint --fix",
"git add"
]
}
}