-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cv-design",
"version": "0.0.1",
"description": "A high quality UI library for React 16+. Based on Typescript and TailwindCSS",
"homepage": "https://github.com/colovu/cv-design",
"author": "Endial Fang <[email protected]>",
"license": "MIT",
"keywords": [],
"scripts": {
"start": "pnpm --filter 'admin' run dev",
"build": "pnpm run b:cvd && pnpm run b:app",
"b:cvd": "pnpm --filter '@cv-design/*' --filter 'cvd' --filter '!@cv-design/doc' exec tsbb build",
"b:app": "pnpm --filter 'admin' run build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm changeset publish",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"clean": "pnpm run clean:cvd && pnpm run clean:app",
"clean:cvd": "pnpm -r --parallel --filter '@cvd/*' --filter 'cvd' exec rimraf node_modules esm cjs dist lib",
"clean:app": "pnpm -r --parallel --filter 'admin' exec rimraf node_modules out",
"pre": "pnpm install --frozen-lockfile && pnpm add -g tsbb tsx rimraf",
"lint": "pnpm prettier && pnpm lint:ts",
"lint:ts": "eslint --fix \"{packages,libs,apps,scripts}/**/*.{js,jsx,ts,tsx}\" --cache --cache-location node_modules/.cache/eslintcache",
"prettier": "prettier --write \"{packages,libs,apps,scripts,docs}/**/*.{js,jsx,ts,tsx,css,less,json,html,md}\" --cache --cache-location node_modules/.cache/prettiercache"
},
"engines": {
"node": ">=16.0.0"
},
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"classnames": "^2.3.2",
"cvd": "workspace:^",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"prettier": "^2.8.7",
"typescript": "^5.0.3"
}
}