-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 975 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 975 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
31
32
33
34
35
36
{
"name": "composter-monorepo",
"private": true,
"packageManager": "npm@10.9.4",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test:e2e": "npx playwright test",
"test:e2e:watch": "npx playwright test --watch",
"setup:dev": "node scripts/test-bootstrap.js dev",
"setup:test": "node scripts/test-bootstrap.js test",
"show-report:e2e": "npx playwright show-report",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@playwright/test": "^1.58.0",
"@types/node": "^25.0.10",
"dotenv-cli": "^11.0.0",
"prettier": "^3.0.0",
"turbo": "^2.3.0"
},
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3"
}
}