-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"private": true,
"name": "mokia-root",
"version": "0.5.0",
"engines": {
"node": ">=12.0"
},
"workspaces": [
"packages/producer",
"packages/decorator",
"packages/server",
"packages/cli",
"packages/mokia",
"packages/docs"
],
"scripts": {
"prepare": "husky install",
"bootstrap": "yarn install && yarn workspaces info",
"lint": "eslint packages/*/src/** --ext .ts",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^14.17.9",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"execa": "^5.1.1",
"husky": "^7.0.1",
"ora": "^5.4.1",
"prettier": "^2.3.2",
"prompts": "^2.4.1",
"semver": "^7.3.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}