-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.59 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@causw/ui",
"version": "0.0.0",
"private": true,
"description": "CAUSW Design System - Design system for CAU Software Community Service (students & alumni) supported by CCSSAA",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test-storybook": "vitest --project=storybook",
"lint": "turbo run lint",
"format": "prettier --write \"packages/**/*.{ts,tsx,js,jsx,json}\"",
"format:check": "prettier --check \"packages/**/*.{ts,tsx,js,jsx,json}\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"preview-storybook": "npx serve storybook-static",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@storybook/addon-docs": "^10.1.2",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^10.1.2",
"@storybook/addon-vitest": "^10.1.2",
"@storybook/react": "^10.1.2",
"@storybook/react-vite": "^10.1.2",
"@storybook/test": "^8.6.14",
"@storybook/test-runner": "^0.24.2",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/browser-playwright": "^4.0.14",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-storybook": "^10.1.2",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"storybook": "^10.1.2",
"storybook-addon-test-codegen": "^3.0.1",
"tailwindcss": "^4.1.17",
"tsdown": "^0.20.1",
"tsx": "^4.21.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vite": "^6.0.0",
"vitest": "^4.0.14"
},
"repository": {
"type": "git",
"url": "https://github.com/CAUCSE/CAUSW-frontend-design-system"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"overrides": {
"esbuild": "0.27.4"
}
},
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{js,jsx,json}": [
"prettier --write"
]
}
}