-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@code-fitness/repo",
"private": true,
"repository": "https://github.com/ineshbose/code-fitness.git",
"packageManager": "yarn@1.22.19",
"workspaces": [
"packages/*",
"packages/shared/*"
],
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"test": "turbo run test",
"lint": "turbo run lint && eslint .",
"dev": "turbo run dev --no-cache --parallel --continue",
"dev:ext": "npm run dev --workspace=code-fitness"
},
"resolutions": {},
"dependencies": {},
"devDependencies": {
"@code-fitness/eslint-config": "*",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitest/coverage-c8": "^0.26.3",
"eslint": "^8.21.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.9.0",
"rimraf": "4.1.0",
"turbo": "1.7.3",
"typescript": "^4.7.4",
"unbuild": "^1.0.2",
"vitest": "^0.26.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint -e"
},
"lint-staged": {
"**/*.{js,ts,svelte}": [
"eslint"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}