-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 782 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 782 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
{
"name": "reactgrad-dev",
"version": "1.0.0",
"description": "ReactGrad Monorepo Starter kit",
"main": "index.js",
"scripts": {
"new": "turbo gen reactgrad-app",
"build:config": "turbo --filter @reactgrad/schema build",
"dev": "turbo run dev",
"dev:editor": "turbo run dev:editor --filter=reactgrad-csr",
"build": "turbo run build",
"test": "turbo run test",
"test:ui": "turbo --filter @reactgrad/ui test"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.5.2",
"devDependencies": {
"@turbo/gen": "^2.5.4",
"@vitejs/plugin-react": "^4.5.2",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vite": "^6.3.5"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
}
}