forked from team-confeti/confeti-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "confeti",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"dev": "turbo dev",
"analytics:generate": "node packages/analytics-catalog/scripts/generate-analytics-catalog.mjs",
"analytics:sync-admin": "pnpm analytics:generate && pnpm --filter @confeti/admin build",
"pr": "node scripts/create-draft-pr.mjs",
"test": "turbo run test",
"coverage": "turbo run coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --cache --fix",
"lint:staged": "lint-staged",
"prepare": "husky",
"storybook": "pnpm --filter @confeti/design-system run storybook",
"build-storybook": "pnpm --filter @confeti/design-system run build-storybook"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@confeti/eslint": "workspace:*",
"eslint": "catalog:",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"turbo": "^2.5.4",
"typescript": "catalog:"
},
"packageManager": "pnpm@10.12.0",
"engines": {
"node": ">=20"
}
}