-
-
Notifications
You must be signed in to change notification settings - Fork 117
/
Copy pathpackage.json
30 lines (30 loc) · 804 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
{
"name": "maily",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"clean": "turbo run clean",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format:write": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md}\"",
"test": "turbo run test",
"test:watch": "turbo run test:watch"
},
"devDependencies": {
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"eslint": "^9.13.0",
"happy-dom": "^15.7.4",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"tsconfig": "workspace:*",
"tsup": "^8.3.0",
"turbo": "latest",
"vite": "^5.4.9",
"vitest": "^2.1.3"
}
}