-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 942 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
38
39
40
41
42
{
"name": "shopper-ave",
"version": "1.0.0",
"private": true,
"license": "UNLICENSE",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"kill-ports": "kill-port 4000 3000",
"run:client": "yarn workspace client dev",
"run:server": "yarn workspace server dev"
},
"devDependencies": {
"eslint-config-custom": "*",
"husky": "^8.0.3",
"kill-port": "^2.0.1",
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"turbo": "latest"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
}
}