This repository has been archived by the owner on Dec 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 2.05 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"backend/*",
"frontend/*"
],
"scripts": {
"build": "lerna run build",
"clean": "lerna clean && lerna run clean",
"cz": "git-cz",
"format": "prettier --write \"./**/*.{ts,js,json,md,vue}\"",
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md,vue}\"",
"lint": "eslint --ext .js,.ts,.vue .",
"lint-fix": "eslint . --ext .js,.ts --fix",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn format-check",
"postinstall": "lerna link",
"test": "lerna run test --parallel",
"typecheck": "lerna run typecheck",
"release": "lerna version",
"publish": "lerna publish from-package --yes",
"console": "lerna run --scope @platyplus/graphql-engine console",
"dev": "concurrently \"dotenv -- docker-compose -f docker-compose.yml -f docker-compose-dev.yml up --build\" \"yarn run console\"",
"dev:platyplus": "concurrently \"lerna run watch\" \"lerna run --scope @platyplus/platyplus dev\"",
"dev:authentication": "concurrently \"lerna run watch\" \"lerna run --scope @platyplus/authentication-service dev\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/node": "12.7.4",
"@typescript-eslint/eslint-plugin": "1.13.0",
"@typescript-eslint/parser": "1.13.0",
"@vue/eslint-config-standard": "4.0.0",
"babel-plugin-wildcard": "5.0.0",
"concurrently": "^4.1.2",
"cz-conventional-changelog": "^3.0.2",
"cz-lerna-changelog": "^2.0.2",
"dotenv-cli": "^2.0.1",
"eslint": "5.16.0",
"eslint-config-prettier": "6.1.0",
"eslint-loader": "2.2.1",
"eslint-plugin-vue": "5.2.3",
"github-label-sync": "1.4.1",
"husky": "^3.0.5",
"lerna": "^3.16.4",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"typescript": "3.5.3"
}
}