-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.46 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.46 KB
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
{
"name": "reacterial-monorepo",
"description": "Reacterial - Multi-purpose development platform: AI-Native Admin Starter, Modern Monorepo Learning Platform, and Internal Tools Accelerator. Built with Next.js 16, React, Material-UI, and Turborepo.",
"author": "Marlon Maniti",
"version": "0.2.0",
"private": true,
"packageManager": "pnpm@10.9.0",
"scripts": {
"dev": "turbo run dev --filter=@reacterial/admin",
"dev:all": "turbo run dev",
"build": "turbo run build",
"build:admin": "turbo run build --filter=@reacterial/admin",
"start": "pnpm --filter @reacterial/admin start",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{js,ts,tsx,vue,css}\"",
"format:check": "prettier --check \"**/*.{js,ts,tsx,vue,css}\"",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"type-check": "turbo run type-check",
"prepare": "git config core.hooksPath .contextkit/hooks",
"pre-push": "pnpm run format && turbo run lint test:ci --filter=@reacterial/admin"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.3.3",
"turbo": "^2.5.8",
"typescript": "^5.6.0"
}
}