-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"preview": "turbo run preview",
"test": "turbo run test",
"benchmark": "turbo run benchmark",
"release": "turbo run release",
"lint": "eslint --ext .ts ./**/src/**.ts",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"turbo": "^1.2.14",
"typescript": "^4.6.4",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
}
}