-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.85 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "dashup",
"version": "1.1.1",
"description": "A React Dashboard Component.",
"repository": {
"type": "git",
"url": "https://github.com/builtbyedgar/dashup"
},
"author": "Edgar Bermejo",
"license": "MIT",
"homepage": "http://builtbyedgar.github.io/dashup",
"main": "./index.js",
"module": "./index.esm.js",
"types": "./index.d.ts",
"style": "./style.css",
"scripts": {
"lint": "eslint --max-warnings 0 \"*/**/*.{ts,tsx}\" --ignore-path .gitignore",
"format": "prettier --write . --ignore-path .gitignore",
"precommit": "lint-staged && test",
"build": "rm -rf dist && rollup -c && cp package.json ./dist/package.json",
"clean": "rm -rf dist && rm -rf public",
"pack": "npm run build && npm pack",
"publish": "npm publish --access public",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build -o ./public",
"test": "vitest",
"test:storybook": "test-storybook",
"test:storybook-watch": "test-storybook --watch",
"coverage:storybook": "test-storybook --coverage"
},
"keywords": [
"ui",
"react",
"library",
"component",
"dashboard",
"layout",
"draggable",
"sortable",
"resizable"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@storybook/addon-coverage": "^0.0.8",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.22",
"@storybook/addon-links": "^7.0.18",
"@storybook/blocks": "^7.0.18",
"@storybook/jest": "^0.1.0",
"@storybook/manager-api": "^7.0.21",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "^0.1.0",
"@storybook/theming": "^7.0.21",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-c8": "^0.32.0",
"concurrently": "^8.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"gh-pages": "^5.0.0",
"happy-dom": "^9.20.3",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jsdom-testing-mocks": "^1.9.0",
"lint-staged": "^13.2.2",
"postcss-typescript-d-ts": "^1.0.0",
"prettier": "^2.8.8",
"react-scripts": "^5.0.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.63.4",
"standard-version": "^9.5.0",
"storybook": "^7.0.18",
"tsc-alias": "^1.8.6",
"tslib": "^2.5.3",
"typescript": "4.9.3",
"typescript-eslint": "0.0.1-alpha.0",
"vite": "^4.3.9",
"vitest": "^0.32.0"
},
"lint-staged": {
"*.+(ts|tsx)": [
"npm run lint"
],
"*.+(ts|tsx|json|css|md)": [
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release-it": {
"git": {
"requireBranch": "release-first-beta",
"commitMessage": "chore: release v${version}"
},
"npm": {
"skipChecks": true,
"publish": true,
"access": "public",
"publishPath": "--registry=https://registry.npmjs.org/dashup"
}
}
}