forked from stack-auth/stack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.74 KB
/
package.json
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@stackframe/monorepo",
"version": "0.0.0",
"private": true,
"repository": "",
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"typecheck": "only-allow pnpm && turbo typecheck",
"build": "only-allow pnpm && turbo build",
"build:backend": "only-allow pnpm && turbo run build --filter=@stackframe/stack-backend...",
"build:dashboard": "only-allow pnpm && turbo run build --filter=@stackframe/stack-dashboard...",
"build:demo": "only-allow pnpm && turbo run build --filter=demo-app...",
"clean": "only-allow pnpm && turbo run clean && rimraf --glob **/.next && rimraf --glob **/.turbo && rimraf .turbo && rimraf --glob **/node_modules",
"codegen": "only-allow pnpm && turbo run codegen",
"psql": "only-allow pnpm && pnpm run --filter=@stackframe/stack-backend psql",
"prisma": "only-allow pnpm && pnpm run --filter=@stackframe/stack-backend prisma",
"fern": "only-allow pnpm && pnpm run --filter=@stackframe/docs fern",
"dev": "only-allow pnpm && turbo run dev --concurrency 99999",
"start": "only-allow pnpm && turbo run start --concurrency 99999",
"start:backend": "only-allow pnpm && turbo run start --concurrency 99999 --filter=@stackframe/stack-backend",
"start:dashboard": "only-allow pnpm && turbo run start --concurrency 99999 --filter=@stackframe/stack-dashboard",
"start:oauth-mock-server": "only-allow pnpm && turbo run start --concurrency 99999 --filter=@stackframe/oauth-mock-server",
"lint": "only-allow pnpm && turbo run lint -- --max-warnings=0",
"release": "only-allow pnpm && release",
"peek": "only-allow pnpm && pnpm release --peek",
"changeset": "only-allow pnpm && changeset",
"test": "vitest",
"generate-docs": "only-allow pnpm && turbo run generate-docs",
"generate-keys": "only-allow pnpm && turbo run generate-keys"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@testing-library/react": "^15.0.2",
"@types/node": "^20.8.10",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.x",
"@typescript-eslint/parser": "^6.x",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "8.30.0",
"eslint-config-next": "^14",
"eslint-config-standard-with-typescript": "^43",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.31.11",
"jsdom": "^24.0.0",
"only-allow": "^1.2.1",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"tsup": "^8.0.2",
"turbo": "^2.0.6",
"typescript": "5.3.3",
"vitest": "^1.5.0"
},
"pnpm": {
"overrides": {}
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"dependencies": {},
"packageManager": "[email protected]"
}