-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "@coveo/headless-react",
"version": "0.0.0",
"description": "React utilities for SSR (Server Side Rendering) with headless",
"homepage": "https://docs.coveo.com/en/headless/latest/",
"repository": {
"type": "git",
"url": "git+https://github.com/coveo/ui-kit.git",
"directory": "packages/headless-react"
},
"keywords": [
"headless",
"react",
"nextjs",
"ssr"
],
"license": "Apache-2.0",
"type": "module",
"exports": {
"./ssr": "./dist/ssr/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "nx build",
"clean": "rimraf dist",
"test": "jest",
"test:watch": "jest --watch --colors --no-cache",
"lint": "eslint .; publint",
"release:phase1": "npx -p=@coveo/release bump",
"release:phase2": "npx -p=@coveo/release npm-publish",
"promote:npm:latest": "node ../../scripts/deploy/update-npm-tag.mjs latest"
},
"dependencies": {
"@coveo/headless": "2.32.0"
},
"devDependencies": {
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.4",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.7.0",
"eslint-plugin-jest-dom": "5.1.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-testing-library": "6.0.1",
"gts": "5.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"publint": "0.2.2",
"rimraf": "5.0.1",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"engines": {
"node": "^18 || ^20"
}
}