-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "bedsheets-monorepo",
"private": true,
"repository": "[email protected]:awendland/bedsheets.git",
"author": "Alex Wendland <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "shx rm -rf packages/*/dist/",
"commit": "git-cz",
"prettier": "pre-commit run prettier --all-files",
"build:all": "lerna run build",
"build:all:watch": "lerna run --parallel build:watch",
"scripts:run": "ts-node-script --transpile-only",
"scripts:check": "tsc --noEmit ./scripts/*.ts",
"test:name-match": "jest --runInBand --testNamePattern",
"test:all": "yarn test:unit && yarn test:integration",
"test:all:ci": "yarn test:unit:ci && yarn test:integration:ci",
"test:unit": "jest --testPathPattern='/unit'",
"test:unit:ci": "yarn test:unit --ci --verbose --coverage",
"test:integration": "jest --testPathPattern='/integration' --runInBand",
"test:integration:ci": "yarn test:integration --ci --verbose --coverage",
"prepare": "yarn clean && yarn build:all"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0",
"jest": "^26.0.1",
"lerna": "^3.22.0",
"shx": "^0.3.2",
"ts-jest": "^26.1.0",
"ts-node": "8.10.2",
"typescript": "^3.9.3"
},
"engines": {
"node": ">=10.14.2",
"yarn": "1.x"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"semi": false
}
}