-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "@croct/plug-react",
"version": "0.0.0-dev",
"description": "React components and hooks to plug your React applications into Croct.",
"author": {
"name": "Croct",
"url": "https://croct.com",
"email": "lib+plug-react@croct.com"
},
"keywords": [
"croct",
"personalization",
"react",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/plug-react.git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"source": "./src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"test": "jest -c jest.config.js --coverage",
"validate": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@croct/plug": "^0.16.2",
"@croct/sdk": "^0.17.6"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@croct/eslint-plugin": "^0.7.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.94.0"
},
"files": [
"**/*.js",
"**/*.ts",
"**/*.map"
]
}