-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.17 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
{
"name": "@croct/plug-next",
"version": "0.0.0-dev",
"description": "React components and utilities to plug your Next.js applications into Croct.",
"author": {
"name": "Croct",
"url": "https://croct.com",
"email": "[email protected]"
},
"keywords": [
"croct",
"personalization",
"react",
"next.js",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/croct-tech/plug-next.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 && tsc-alias -p tsconfig.json"
},
"peerDependencies": {
"next": "^13.0 || ^14.0",
"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/plug-react": "^0.9.0",
"@croct/sdk": "^0.17.4",
"cookie": "^0.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@croct/eslint-plugin": "^0.7.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/cookie": "^0.6.0",
"@types/jest": "^29.2.3",
"@types/node": "^22.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/set-cookie-parser": "^2.4.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.1.0",
"eslint": "^8.57.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-extended": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"set-cookie-parser": "^2.6.0",
"ts-node": "^10.8.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5"
},
"files": [
"**/*.js",
"**/*.ts",
"**/*.tsx",
"**/*.map"
]
}