-
Notifications
You must be signed in to change notification settings - Fork 203
/
package.json
118 lines (118 loc) · 3.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ever-traduora",
"version": "0.20.2",
"description": "Ever® Traduora - Open Translation Management Platform",
"license": "AGPL-3.0-only",
"homepage": "https://traduora.co",
"repository": {
"type": "git",
"url": "git+https://github.com/ever-co/ever-traduora.git"
},
"bugs": {
"url": "https://github.com/ever-co/ever-traduora/issues"
},
"private": true,
"author": {
"name": "Ever Co. LTD",
"email": "[email protected]",
"url": "https://ever.co"
},
"scripts": {
"prepare:husky": "npx husky install .husky",
"fmt": "prettier --write --list-different \"**/*.ts\"",
"check-fmt": "prettier --check \"**/*.ts\"",
"bootstrap": "yarn install && yarn lerna bootstrap",
"build": "concurrently --raw \"yarn build:api\" \"yarn build:webapp\" \"yarn build:docs\"",
"build:lerna": "yarn lerna run --parallel build",
"build:api": "cross-env yarn --cwd ./api build",
"build:webapp": "cross-env yarn --cwd ./webapp build",
"build:docs": "cross-env yarn --cwd ./docs-website build",
"start:web": "cross-env yarn --cwd ./webapp start",
"start:api": "cross-env yarn --cwd ./api start",
"commit": "git-cz",
"commit:lint": "commitlint -E HUSKY_GIT_PARAMS",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@commitlint/travis-cli": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"cloc": "^2.2.0-cloc",
"codelyzer": "^6.0.2",
"commitizen": "^4.2.1",
"concurrently": "^6.1.0",
"conventional-changelog": "^3.1.23",
"conventional-changelog-cli": "^2.1.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.4",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"prettier": "^3.3.3",
"prettier-tslint": "^0.4.2",
"pretty-quick": "^4.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"snyk": "^1.1292.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --no-verify --staged"
}
},
"lint-staged": {},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/github"
],
"generateNotes": {
"preset": "angular"
},
"npmPublish": false
},
"workspaces": {
"packages": [
"webapp",
"api",
"docs-website"
],
"nohoist": [
"**/@types/jasmine",
"**/@types/jasminewd2",
"**/@angular*/**",
"**/@ngtools/**"
]
},
"engines": {
"node": ">=18.0.0",
"yarn": ">=1.13.0"
},
"snyk": true
}