-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.92 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": "@certego/certego-ui",
"version": "0.1.13",
"description": "certego components library (react.js, reactstrap, etc)",
"author": "certego",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/certego/certego-ui"
},
"bugs": {
"url": "https://github.com/certego/certego-ui/issues"
},
"homepage": "https://github.com/certego/certego-ui#readme",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=20"
},
"files": [
"dist",
"src/styles"
],
"scripts": {
"build": "microbundle-crl --no-compress --jsxFragment React.Fragment --format modern,cjs",
"start": "PORT=3001 microbundle-crl watch --no-compress --jsxFragment React.Fragment --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build ",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom --passWithNoTests",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && npm install && npm run build",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "npm run lint -- --fix",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"pretty-quick": "pretty-quick --staged"
},
"peerDependencies": {
"axios": "^1.6.0",
"axios-hooks": "^3.0.4",
"bootstrap": "^5.2.1",
"formik": "^2.2.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"react-table": "^7.8.0",
"reactstrap": "^9.0.3"
},
"dependencies": {
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"match-sorter": "^6.3.1",
"nanoid": "^3.3.4",
"prop-types": "^15.8.1",
"react-compound-slider": "^3.3.1",
"react-icons": "^4.3.1",
"react-infinite-scroll-component": "^6.1.0",
"react-json-editor-ajrm": "^2.5.13",
"react-json-view": "^1.21.3",
"react-select": "^5.3.2",
"react-share": "^4.4.0",
"react-top-loading-bar": "^2.1.0",
"react-use": "^17.4.0",
"recharts": "^2.1.10",
"zustand": "^4.0.0-rc.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"gh-pages": "^3.2.3",
"microbundle-crl": "^0.13.11",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.6.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"react-scripts": "^5.0.1",
"sass": "^1.52.1"
}
}