-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.76 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
{
"name": "root",
"private": true,
"packageManager": "pnpm@7.0.1",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"start": "pnpm -C ./packages/app start & pnpm -C ./packages/view start:dev & pnpm -C ./packages/view client:dev",
"backend:start": "pnpm -C ./packages/app start & pnpm -C ./packages/app client:start",
"app-server:start": "pnpm -C ./packages/app start",
"app-server:dev": "pnpm -C ./packages/app dev",
"app-server:debug": "pnpm -C ./packages/app debug",
"app-client:start": "pnpm -C ./packages/app client:start",
"app-client:dev": "pnpm -C ./packages/app client:dev",
"app-client:debug": "pnpm -C ./packages/app client:debug",
"view:dev": "pnpm -C ./packages/view dev",
"view:build": "pnpm -C ./packages/view build",
"cz": "pnpm exec git-cz",
"format": "prettier --write .",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --max-warnings 0 && pretty-quick --check",
"lint:fix": "eslint --fix . --ext .vue,.js,.ts,.jsx,.tsx && pretty-quick",
"style": "stylelint \"**/*.(vue|less|css)\" --fix",
"prepare": "husky install",
"prerelease": "standard-version --prerelease",
"release": "standard-version",
"postinstall": "husky install & pnpm -C ./packages/shared build",
"preinstall": "npx only-allow pnpm -y"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZingerLittleBee/x-forward.git"
},
"author": "ZingerLittleBee",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZingerLittleBee/x-forward/issues"
},
"homepage": "https://github.com/ZingerLittleBee/x-forward#readme",
"dependencies": {
"@x-forward/app": "workspace:*",
"@x-forward/view": "workspace:*",
"lodash": "4.17.21"
},
"devDependencies": {
"@commitlint/cli": "16.2.4",
"@commitlint/config-conventional": "16.2.4",
"@types/jest": "27.5.0",
"@types/lodash": "4.14.182",
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-define-config": "1.4.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "^8.7.1",
"git-cz": "4.8.0",
"husky": "8.0.1",
"jest": "28.1.0",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"pretty-quick": "3.1.3",
"stylelint": "14.8.2",
"stylelint-config-standard": "25.0.0",
"ts-jest": "28.0.2",
"typescript": "4.6.4",
"vue-eslint-parser": "^9.0.1"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"**/*.{js,jsx,tsx,ts}": [
"npm run lint:fix",
"git add ."
],
"**/*.{scss, css}": [
"npm run lint:style",
"git add ."
]
}
}