-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "cluesive-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"packages/core",
"packages/trackers/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"check-types": "turbo run check-types",
"check-formatting": "prettier . --check",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "3.4.2",
"tsup": "^8.3.5",
"turbo": "^1.12.5",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vitest": "^1.3.1"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.29.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "npm@10.9.0"
}