-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
{
"name": "@kbase/ui-components",
"version": "0.7.3",
"description": "A typescript library to provide react components for integration into kbase-ui and friends",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib/**/*",
"/src/**/*"
],
"scripts": {
"test": "jest",
"copy-assets": "copyfiles -u 1 \"./src/**/*.css\" \"./lib/\"",
"clean": "rm -rf ./lib/*",
"build": "bash scripts/build.bash",
"prepare": "bash scripts/prepare.bash",
"prepublish": "jest",
"start": "tsc --watch",
"generate-api-docs": "typedoc --out api-docs src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kbaseIncubator/kbase-ui-components.git"
},
"keywords": [
"kbase",
"ui",
"lib",
"react",
"typescript"
],
"author": "KBase Developers",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/kbaseIncubator/kbase-ui-components/issues"
},
"homepage": "https://github.com/kbaseIncubator/kbase-ui-components#readme",
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@kbase/ui-lib": "^0.5.2",
"@types/bluebird": "3",
"@types/js-cookie": "3",
"@types/react": "18",
"@types/react-dom": "18",
"@types/react-redux": "7",
"antd": "^5.0.0",
"bluebird": "^3.5.5",
"js-cookie": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29",
"copyfiles": "2.4.1",
"eslint": "8.28.0",
"eslint-plugin-react": "7.31.11",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-transform-css": "6.0.0",
"ts-jest": "29.0.3",
"typedoc": "0.23.21",
"typescript": "4.9.3"
},
"publishConfig": {
"access": "public"
}
}