-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.24 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": "monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"commit": "cz",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,js,jsx}\"",
"prepare": "husky install && turbo run prepare",
"postinstall": "turbo run postinstall"
},
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "latest",
"ts-node": "^10.9.1",
"turbo": "latest"
},
"resolutions": {
"@types/react": "17.0.37"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/ui/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/editor/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/icanvas/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/prisma-orm/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/server/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"packages/utils/**/*.{js,ts,jsx,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}