-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 749 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 749 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
{
"name": "artisan-base",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "5.8.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"autoprefixer": "^10",
"postcss": "^8",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"pnpm": {
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0"
}
}
}