-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "opensaas-stack",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.29.1",
"description": "A modern stack for building admin-heavy applications with Next.js App Router",
"scripts": {
"build": " pnpm turbo build",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "pnpm build && changeset publish",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:codegen": "playwright codegen http://localhost:3000"
},
"keywords": [
"nextjs",
"admin",
"prisma",
"stack"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.4",
"@manypkg/cli": "^0.25.1",
"@playwright/test": "^1.58.2",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"turbo": "^2.8.20",
"typescript": "^5.9.3"
}
}