-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "baseapp-frontend",
"description": "A modularized package system for TSL's frontend baseapp.",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"test:unit": "turbo run test:unit",
"test:component": "turbo run test:component",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"clean": "turbo clean && git clean -xdf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"replace-catalogs": "node replace-catalogs.js",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@parcel/packager-ts": "2.13.0",
"@parcel/transformer-typescript-types": "2.13.0",
"@types/node": "catalog:",
"eslint": "catalog:lint",
"husky": "catalog:lint",
"lint-staged": "catalog:lint",
"prettier": "catalog:lint",
"turbo": "^2.1.1",
"typescript": "catalog:",
"yaml": "^2.5.1"
},
"lint-staged": {
"apps/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"engines": {
"node": ">=20.17.0"
},
"packageManager": "pnpm@9.12.0"
}