forked from monorepolint/monorepolint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.11 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
63
64
65
66
67
68
{
"name": "monorepolint",
"author": "Eric L Anderson (https://github.com/ericanderson)",
"contributors": [
"Mac Lockard (https://github.com/maclockard)"
],
"url": "https://github.com/monorepolint/monorepolint",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/*/src/**/*.{ts,tsx}": [
"prettier --write",
"tslint -c tslint.json --fix"
]
},
"scripts": {
"changelog": "rm -rf '/tmp/github-changelog-http-cache' && github_changelog_generator",
"ci": "npm-run-all clean compile lint test",
"clean": "lerna run clean && rm -rf node_modules && yarn",
"compile": "lerna run compile:typescript",
"compile:fast": "cd packages/all; tsc --build",
"compile:watch": "cd packages/all; tsc --build --watch",
"fix:lint:monorepolint": "monorepolint fix",
"fix:lint:prettier": "prettier 'packages/*/src/**/*.{ts,tsx,less}' --write",
"fix:lint:typescript": "lerna run --no-bail lint:typescript -- --fix",
"lint": "npm-run-all lint:*",
"lint:monorepolint": "monorepolint check --verbose",
"lint:prettier": "prettier 'packages/*/src/**/*.{ts,tsx,less}' -l",
"lint:typescript": "lerna run --no-bail lint:typescript",
"preLernaPublish": "npm-run-all clean compile lint test",
"publish:release": "yarn run preLernaPublish && lerna publish --force-publish",
"publish:prerelease": "yarn run preLernaPublish && lerna publish --force-publish --canary minor --yes",
"test": "lerna run test"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/mock-fs": "^4.10.0",
"@types/node": "^14.0.12",
"gh-pages": "^3.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lerna": "^3.6.0",
"lint-staged": "^10.2.9",
"mock-fs": "^4.7.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.0.3",
"tslint": "^6.1.2",
"typescript": "^3.9.2"
},
"optionalDependencies": {
"fsevents": "^2.1.3"
},
"engines": {
"node": ">=10"
}
}