-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 938 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 938 Bytes
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
{
"name": "swc-project-website-workspace",
"packageManager": "pnpm@8.6.3",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"run-turbo": "turbo",
"prepare": "husky install",
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "turbo run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "8.23.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.11",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.1.13",
"turbo": "^2.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.12",
"@types/react-dom": "19.0.4"
}
}
}