This repository has been archived by the owner on Jun 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.83 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
{
"name": "@hadmean/chromista",
"version": "1.0.104",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Ayobami Akingbade",
"module": "dist/chromista.esm.js",
"files": [
"dist"
],
"scripts": {
"start": "npm run storybook",
"build": "tsdx build",
"test": "jest --detectOpenHandles --runInBand",
"typecheck": "tsc",
"test:cov": "jest --coverage",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "eslint --fix",
"prepublishOnly": "tsdx build",
"setup-husky": "husky install",
"verify": "npm run typecheck && npm run lint && npm run test && npm run build && npm run build-storybook",
"verify-release": "npm run test",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16"
},
"dependencies": {
"@hadmean/protozoa": "^1.0.26",
"@tanstack/react-table": "^8.7.9",
"@types/prismjs": "^1.26.0",
"@types/react-datepicker": "^4.4.1",
"@types/styled-components": "^5.1.25",
"axios": "^1.2.1",
"lodash-es": "^4.17.21",
"next": "12.3.1",
"polished": "^4.2.2",
"prismjs": "^1.28.0",
"react-bootstrap": "^2.4.0",
"react-confirm-alert": "^3.0.2",
"react-datepicker": "^4.8.0",
"react-dropzone": "^14.2.1",
"react-easy-sort": "^1.5.0",
"react-feather": "^2.0.9",
"react-final-form": "^6.5.9",
"react-hot-toast": "^2.2.0",
"react-paginate": "^8.1.3",
"react-query": "3.39.2",
"react-quill": "^2.0.0",
"react-select": "^5.3.2",
"react-simple-code-editor": "^0.11.0",
"react-tooltip": "^5.7.4",
"react-use": "^17.4.0",
"styled-components": "^5.3.6",
"tiny-skeleton-loader-react": "^1.2.1",
"zustand": "3.4.2"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@hadmean/eslint-config": "^1.0.5",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-info": "^4.1.18",
"@storybook/addon-links": "^6.5.3",
"@storybook/addons": "^6.5.3",
"@storybook/react": "^6.5.14",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-loader": "^8.2.5",
"eslint": "^8.2.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-is": "^18.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svg": "^2.0.0",
"rollup-plugin-svg-import": "^1.6.0",
"tsdx": "^0.13.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16"
},
"sideEffects": false
}