-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.32 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.32 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
{
"name": "@harmonicui/react",
"version": "1.0.0",
"description": "Inclusive, extensible, highly flexible UI components for React",
"license": "MIT",
"author": "Mohammad Ataei",
"scripts": {
"build": "unbuild",
"test": "vitest",
"cypress": "cypress open",
"cypress:run": "cypress run --component",
"cypress:coverage": "cypress run --component --env coverage=true",
"test:run": "vitest run && pnpm cypress:run",
"test:coverage": "vitest run --coverage && pnpm cypress:coverage",
"format": "prettier --write . && pnpm lint --fix",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@cypress/code-coverage": "^3.10.0",
"@dom-assertions/cypress-dom": "^0.1.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.25.0",
"cypress": "^11.0.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jsdom": "^20.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.4",
"unbuild": "^0.9.4",
"vite": "^3.2.1",
"vite-plugin-istanbul": "^3.0.1",
"vitest": "^0.25.0"
},
"keywords": [
"react",
"react-component"
],
"repository": {
"type": "git",
"url": "https://github.com/harmonicui/react/"
},
"bugs": {
"url": "https://github.com/harmonicui/react/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"files": [
"dist"
]
}