-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.49 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "stratala",
"version": "1.0.0",
"description": "SaaS Starter template",
"private": true,
"workspaces": [
"apps/*/**",
"packages/*",
"tools/*"
],
"main": "index.js",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"test": "turbo run test --concurrency=1",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:build": "docker-compose build",
"docker:logs": "docker-compose logs -f",
"docker:restart": "docker-compose restart",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d",
"docker:prod:build": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up --build -d",
"seed:reset": "tsx scripts/reset-all-databases.ts",
"seed:all": "cd apps/backend && node ace seed:all",
"plane-sync": "tsx scripts/plane-sync.ts"
},
"keywords": [
"monorepo",
"turborepo",
"platform",
"content",
"research"
],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^25.9.1",
"dotenv": "^16.4.7",
"playwright": "^1.56.1",
"prettier": "^3.0.0",
"tsx": "^4.22.3",
"turbo": "^2.9.14",
"typescript": "^6.0.3"
},
"resolutions": {
"unimport": "4.1.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@scarf/scarf",
"@tailwindcss/oxide",
"bcrypt",
"better-sqlite3",
"esbuild",
"maplibre-gl",
"sharp",
"unrs-resolver",
"vue-demi"
],
"ignoredBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"vue-demi"
]
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"optionalDependencies": {
"@oxc-minify/binding-darwin-x64": "0.96.0",
"@oxc-parser/binding-darwin-x64": "0.96.0",
"@oxc-transform/binding-darwin-x64": "0.132.0"
}
}