forked from ganttlab/ganttlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.72 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
{
"name": "ganttlab-monorepo",
"private": true,
"author": "Clorichel <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build:doc": "lerna run --parallel build:doc",
"postinstall": "yarn build:lib:entities && yarn build:lib:use-cases && yarn build:lib:gateways",
"build:lib:entities": "yarn workspace ganttlab-entities run build:lib",
"build:lib:use-cases": "yarn workspace ganttlab-use-cases run build:lib",
"build:lib:gateways": "yarn workspace ganttlab-gateways run build:lib",
"build:webapp": "yarn workspace ganttlab-adapter-webapp run build",
"clean:all": "yarn clean:packages && yarn clean:lerna",
"clean:lerna": "lerna clean --yes && rm -rf node_modules",
"clean:packages": "lerna run clean --parallel",
"watch": "lerna run --parallel watch",
"webapp": "yarn workspace ganttlab-adapter-webapp run serve",
"lint": "tsc --noEmit && eslint '*/**/*.{js,ts}' --quiet --fix && yarn workspace ganttlab-adapter-webapp run lint",
"lerna:changed": "lerna changed -al",
"lerna:release": "lerna version --conventional-commits --changelog-preset angular --create-release gitlab"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": ">=4",
"lerna": "^3.20.2",
"lint-staged": ">=10",
"prettier": "^2.0.2",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"workspaces": {
"packages": [
"packages/*"
]
}
}