-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.34 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
{
"private": true,
"name": "microfleet_docs",
"workspaces": [
"packages/*"
],
"scripts": {
"prebootstrap": "yarn --frozen-lockfile --check-files",
"bootstrap": "lerna bootstrap -- --frozen-lockfile --check-files",
"lint": "lerna run lint --parallel",
"pretest": "yarn lint && yarn compile",
"test": "lerna run test --stream",
"precompile": "yarn clean",
"compile": "tsc -b ./tsconfig.build.json",
"clean": "rimraf packages/*/lib packages/*/*.tsbuildinfo",
"semantic-release": "yarn compile && lerna publish --conventional-commits --create-release=github --yes",
"dev": "lerna exec nodemon --stream -- -w ./src/ -x yarn compile -e ts"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@makeomatic/deploy": "^10.3.0",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-makeomatic": "^5.0.3",
"lerna": "^3.22.1",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"prepare-commit-msg": "./node_modules/@makeomatic/deploy/git-hooks/prepare-commit-msg $HUSKY_GIT_PARAMS"
}
}
}