-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
33 lines (33 loc) · 989 Bytes
/
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
{
"name": "@terrazzo/monorepo",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"build:apps": "turbo run build:app",
"changeset": "changeset",
"inject-license": "node scripts/inject-license.js",
"dev": "pnpm run -r --parallel --if-present dev",
"lint": "turbo run lint",
"format": "turbo run format",
"test": "turbo run test",
"prepublishOnly": "pnpm run build",
"version": "pnpm run build && changeset version && pnpm i --no-frozen-lockfile"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@types/node": "^22.10.7",
"execa": "^9.5.2",
"prettier": "^3.4.2",
"strip-ansi": "^7.1.0",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"vitest": "^3.0.2"
}
}