-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.04 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
{
"name": "@kontent-ai/react-components",
"version": "0.3.6",
"description": "The package containing React components useful when processing Kontent.ai data to the site.",
"repository": "https://github.com/kontent-ai/react-components.git",
"homepage": "https://github.com/kontent-ai/react-components#readme",
"bugs": {
"url": "https://github.com/kontent-ai/react-components/issues"
},
"author": {
"name": "Ondřej Chrastina",
"email": "[email protected]",
"url": "https://ondrej.chrastina.dev"
},
"license": "MIT",
"main": "dist/index.js",
"sideEffects": false,
"private": false,
"keywords": [
"kontent-ai",
"react",
"headlesscms",
"cms",
"headless",
"saas",
"react-components",
"react-component",
"react-package"
],
"scripts": {
"lint": "eslint",
"test": "jest",
"build:dev": "tsc",
"build:prod": "npm run build:dev -- --sourceMap false",
"watch": "tsc -w"
},
"dependencies": {
"html-react-parser": "^3.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@kontent-ai/delivery-sdk": "^14.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"eslint": "^8.25.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"webpack": "^5.74.0"
},
"peerDependencies": {
"@kontent-ai/delivery-sdk": "^14.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}