-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
49 lines (49 loc) · 1.83 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
{
"name": "root",
"author": "Orie Steele (https://github.com/OR13)",
"contributors": [
"Orie Steele (https://github.com/OR13)",
"gjgd (https://github.com/gjgd)"
],
"private": true,
"license": "Apache-2.0",
"scripts": {
"clean:lock": "npx lerna exec 'rm -rf package-lock.json node_modules'",
"postinstall": "lerna bootstrap",
"install:only": "lerna bootstrap --include-dependencies --scope",
"lint": "lerna run lint --stream",
"lint:fix": "lerna run lint:fix --stream",
"clean:test": "npx jest --clearCache",
"pretest": "docker-compose -f ./docker-compose.yml up --detach --remove-orphans",
"test": "lerna run test --stream --concurrency 1",
"test:only": "npm t -- --scope",
"build": "lerna run build --stream",
"install:ci": "npm install --ignore-scripts && lerna link && lerna bootstrap --since origin/main --include-dependencies",
"install:clean": "npx lerna clean -y && rm -rf node_modules && npm i",
"publish:stable:patch": "lerna publish patch --force-publish",
"publish:stable:minor": "lerna publish minor",
"publish:stable:major": "lerna publish major",
"publish:unstable": "lerna publish prerelease --preid unstable --yes"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "lerna run lint --since origin/main --exclude-dependents"
}
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
}
}