-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.56 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
{
"name": "cylearun-client",
"version": "0.1.0",
"author": "Cylearun Developers",
"private": true,
"workspaces": [
"processes/*",
"packages/*",
"app"
],
"scripts": {
"build": "dotenv -e env/development.build.env -- turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,vue,md,css}\"",
"test": "turbo run test",
"coverage": "turbo run coverage",
"compose-build": "pnpm build && node scripts/copy-dist.mjs"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@cylearun/dev-scripts": "workspace:*",
"@cylearun/eslint-config": "workspace:*",
"@cylearun/ts-config": "workspace:*",
"@cylearun/vite-config": "workspace:*",
"@rushstack/eslint-patch": "^1.1.0",
"@types/fs-extra": "^9.0.13",
"@vitejs/plugin-vue": "3.0.1",
"@vitejs/plugin-vue-jsx": "2.0.0",
"c8": "^7.11.3",
"chalk": "^5.0.1",
"dotenv-cli": "^5.1.0",
"eslint": "8.20.0",
"fs-extra": "^10.1.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "latest",
"turbo": "latest",
"typescript": "4.7.4",
"vite": "3.0.4",
"vitest": "0.19.1"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"**/*.{ts,tsx,vue,md,css}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
}
}