forked from calibreapp/react-live-chat-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
{
"name": "react-live-chat-loader",
"version": "2.7.3",
"description": "Implement live chat in your react app without taking a performance hit.",
"main": "dist/index.js",
"module": "module/index.js",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build": "npm run lint && tsc --emitDeclarationOnly && npm run build:cjs && npm run build:module",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:module": "BABEL_ENV=module babel src --out-dir module --extensions \".ts,.tsx\" --source-maps inline",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"dev": "tsc --noEmit --watch",
"prepare": "npm run build"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"keywords": [
"performance",
"react",
"chat",
"helpscout",
"intercom",
"drift",
"chatwoot",
"userlike",
"facebook messenger",
"messenger"
],
"author": "calibreapp.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calibreapp/react-live-chat-loader.git"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.2.6",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@types/react": "^17.0.3",
"@types/requestidlecallback": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.22.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.22.0",
"prettier": "1.19.1",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3"
},
"files": [
"dist/*",
"module/*"
]
}