-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.78 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.78 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
{
"name": "condev-ui",
"version": "1.0.1",
"main": "index.js",
"type": "module",
"packageManager": "pnpm@10.6.2",
"scripts": {
"dev:ui": "pnpm --filter @condev-ui/ui dev",
"dev:web": "pnpm --filter @condev-ui/web dev",
"dev:site": "pnpm --filter @condev-ui/site dev",
"dev:graph": "turbo dev --graph",
"build:ui": "pnpm --filter @condev-ui/ui build",
"build:web": "pnpm --filter @condev-ui/web build",
"build:site": "pnpm --filter @condev-ui/site build",
"build:graph": "turbo build --graph",
"catalog": "pnpm --filter @condev-ui/site catalog",
"dev": "turbo dev",
"build": "turbo build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:style": "stylelint \"{packages,apps}/**/*.css\"",
"spellcheck": "cspell lint --dot --gitignore --color --cache --show-suggestions \"(packages|apps)/**/*.@(html|js|cjs|mjs|ts|tsx|css|scss|md)\"",
"test": "vitest run --silent",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"commit": "git-cz",
"prepare": "husky",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"publish:ui": "np --no-publish && npm publish",
"workflow": "node ./script/check-act.js && act",
"check": "pnpm lint:fix && pnpm lint && pnpm lint:style && pnpm spellcheck && pnpm test"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@tailwindcss/postcss": "^4.1.3",
"@types/react": "19.1.0",
"@types/react-dom": "19.1.0",
"autoprefixer": "^10.4.21",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.0.4",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"postcss-modules": "^6.0.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-i18next": "^15.4.1",
"tailwindcss": "^4.1.3"
},
"devDependencies": {
"@commitlint/cli": "19.8.0",
"@commitlint/config-conventional": "19.8.0",
"@eslint/js": "9.22.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@typescript-eslint/eslint-plugin": "8.26.1",
"@vitejs/plugin-react": "4.3.4",
"commitizen": "4.3.1",
"conventional-changelog-cli": "5.0.0",
"cspell": "8.17.5",
"cz-git": "1.11.1",
"eslint": "9.22.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "16.0.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"np": "10.2.0",
"stylelint": "16.18.0",
"stylelint-config-standard": "37.0.0",
"turbo": "2.4.4",
"typescript": "5.8.2",
"typescript-eslint": "8.26.1",
"vitest": "3.0.8"
}
}