-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
54 lines (54 loc) · 1.9 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
50
51
52
53
54
{
"private": true,
"name": "wedges-monorepo",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"clean": "turbo clean && rimraf node_modules ./pnpm-lock.yaml ./.turbo ./coverage",
"dev": "turbo run dev --parallel",
"format": "prettier --check ./packages/**/src ./apps/** --cache",
"format:fix": "prettier --write ./packages/**/src ./apps/** --cache",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --passWithNoTests --coverage --coverageReporters=\"text-summary\"",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --verbose --passWithNoTests",
"prepare": "husky",
"version": "changeset version",
"version:dev": "changeset version --snapshot --no-git-tag --tag dev",
"release": "pnpm build && changeset publish",
"release:dev": "pnpm build && changeset publish --snapshot --no-git-tag --tag dev"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@wedges/eslint-config": "workspace:*",
"clsx": "^2.1.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"react": "^18.3.1",
"react-dom": "18.3.1",
"rimraf": "^6.0.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.4.10",
"ts-jest": "^29.2.4",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"@changesets/changelog-github": "^0.5.0"
},
"packageManager": "[email protected]"
}