-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "duyet",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"repository": {
"type": "git",
"url": "https://github.com/duyet/monorepo.git"
},
"scripts": {
"build": "dotenv -- turbo build",
"dev": "dotenv -- turbo dev --parallel",
"prepare": "husky",
"fix": "prettier --write \"**/*.{js,ts,tsx,md}\"",
"fmt": "dotenv -- turbo fmt",
"lint": "dotenv -- turbo lint",
"prettier-check": "prettier --check \"**/*.{ts,tsx,md}\"",
"start": "dotenv -- turbo start",
"test": "dotenv -- turbo test"
},
"lint-staged": {
"*": "prettier -w --ignore-unknown"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@duyet/tsconfig": "*",
"dotenv-cli": "^8.0.0",
"eslint": "8.57.1",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"turbo": "^2.0.1"
},
"resolutions": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@headlessui/react": "2.2.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-is": "19.0.0"
},
"packageManager": "[email protected]"
}