-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.68 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": "@poool/react-engage",
"version": "2.0.0",
"description": "The easiest way to add Poool Engage to your React app ✨",
"main": "dist/poool-react-engage.cjs.js",
"repository": "https://github.com/p3ol/react-engage.git",
"author": "Ugo Stephant <[email protected]>",
"license": "MIT",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"engines": {
"node": "18 || 20 || 22"
},
"workspaces": [
"examples/*"
],
"dependencies": {
"@junipero/core": "3.7.1",
"@types/poool-engage": "2.1.2"
},
"devDependencies": {
"@babel/eslint-plugin": "7.24.7",
"@poool/eslint-config": "3.0.1",
"@poool/eslint-config-react": "3.0.1",
"@poool/eslint-plugin": "3.0.0",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-swc": "0.3.1",
"@rollup/plugin-terser": "0.4.4",
"@swc/core": "1.7.0",
"@swc/jest": "0.2.36",
"@testing-library/dom": "10.3.2",
"@testing-library/react": "16.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/webpack": "5.28.5",
"@types/webpack-dev-server": "4.7.2",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"commit-and-tag-version": "12.4.1",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.9.0",
"eslint-plugin-promise": "6.4.0",
"eslint-plugin-react": "7.34.4",
"html-webpack-plugin": "5.6.0",
"jest": "29.7.0",
"jest-dev-server": "10.0.0",
"jest-environment-jsdom": "29.7.0",
"puppeteer": "22.13.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.25.1",
"rollup": "4.18.1",
"swc-loader": "0.2.6",
"ts-node": "10.9.2",
"typescript": "5.5.3",
"webpack": "5.93.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"scripts": {
"clean": "rm -rf ./dist || true",
"build": "yarn clean && yarn build:code && yarn build:types",
"build:code": "rollup --configPlugin @rollup/plugin-swc -c",
"build:types": "tsc --project ./tsconfig.build.json",
"prepack": "yarn build && yarn lint && yarn tsc && yarn test",
"test": "NODE_ENV='test' jest",
"lint": "eslint --max-warnings=0 .",
"release": "commit-and-tag-version && git push --follow-tags",
"example:basic": "yarn workspace poool-react-engage-basic-example serve",
"example:next": "yarn workspace poool-react-engage-next-example dev"
},
"packageManager": "[email protected]"
}