-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 3.28 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-channel-plugin",
"version": "3.0.0",
"description": "Channel IO plugin wrapper for React",
"author": "Uk-Jin Jang <25097624+ukjinjang@users.noreply.github.com>",
"repository": "https://github.com/ukjinjang/react-channel-plugin",
"homepage": "https://ukjinjang.github.io/react-channel-plugin",
"license": "MIT",
"keywords": [
"react",
"react-hooks",
"react-channel",
"react-channel-plugin",
"channalio",
"channal talk",
"live chat",
"customer-service"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"files": [
"es",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"exports": {
".": {
"import": "./es/index.js",
"require": "./cjs/index.js"
}
},
"sideEffects": false,
"scripts": {
"start": "run-s playground:start",
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build.es.json",
"playground": "vite",
"playground:build": "vite build && del \"build/_*\" && touch build/.nojekyll",
"playground:e2e": "cross-env CYPRESS_COVERAGE=true VITE_COVERAGE=true run-s playground:build",
"playground:deploy": "gh-pages -t -m \"update gh-pages [ci skip]\" -d build",
"e2e": "run-s playground:e2e && start-test serve 8090 'cypress open'",
"e2e:cli": "run-s playground:e2e && start-test serve 8090 'cypress run'",
"coverage:combine": "jrm ./cypress/results/combined-report.xml \"./cypress/results/*.xml\"",
"lint": "eslint --ext .ts --ext .tsx ./src",
"prettier": "prettier-eslint --write $PWD/\"src/**/*.ts?(x)\"",
"serve": "serve -l 8090 -s ./build"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@channel.io/channel-web-sdk-loader": "~2.0.0",
"fast-deep-equal": "^3.1.3",
"tslib": "^2.6.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.12.39",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/node": "^20.5.0",
"@types/react": "~18.3.1",
"@types/react-dom": "~18.3.0",
"@typescript-eslint/eslint-plugin": "~5.62.0",
"@typescript-eslint/parser": "~5.62.0",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"cypress": "~13.9.0",
"cypress-multi-reporters": "^1.6.4",
"del-cli": "~5.1.0",
"eslint": "~8.46.0",
"eslint-config-prettier": "~9.0.0",
"eslint-config-react-app": "~7.0.1",
"eslint-plugin-cypress": "^3.2.0",
"eslint-plugin-formatjs": "~4.11.0",
"eslint-plugin-jsdoc": "~46.4.0",
"eslint-plugin-prettier": "~5.0.0",
"eslint-plugin-simple-import-sort": "~10.0.0",
"gh-pages": "^6.1.1",
"istanbul-lib-coverage": "^3.2.2",
"junit-report-merger": "^3.0.6",
"mocha-junit-reporter": "^2.2.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "~3.0.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-github-btn": "^1.4.0",
"rimraf": "^5.0.5",
"serve": "^12.0.1",
"start-server-and-test": "^1.15.5",
"touch": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.1.6",
"vite": "^4.5.3",
"vite-plugin-istanbul": "^5.0.0"
}
}