forked from zendesk/zopim-chat-web-sdk-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.69 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.69 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "hype-chat-widget",
"version": "0.3.52",
"license": "MIT",
"description": "Zopim + QnA Chat Web Widget (React)",
"main": "dist/index.js",
"files": [
"dist",
"vendor"
],
"scripts": {
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./src/index.html ./dist",
"dist": "yarn copy & webpack --env=dist",
"lint": "eslint ./src",
"posttest": "yarn lint",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"start": "node server.js --env=dev",
"postinstall": "node tools download-zendesk-sdk",
"heroku-postbuild": "yarn dist",
"purge-cdn": "node tools purge-cdn"
},
"repository": "",
"keywords": [],
"author": "Lorenzo De Santis",
"engineStrict": true,
"engines": {
"node": ">=4.5.0"
},
"lint-staged": {
"*.js": [
"node_modules/eslint/bin/eslint.js --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": [
"last 5 versions",
"ie 6-11"
],
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.2.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"commander": "^4.0.0",
"copy-webpack-plugin": "^5.0.3",
"copyfiles": "^2.1.0",
"css-loader": "^3.2.0",
"dotenv-webpack": "^1.5.7",
"eslint": "^6.5.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^4.2.0",
"glob": "^7.0.0",
"husky": "^3.0.9",
"json-loader": "^0.5.7",
"lint-staged": "^9.4.2",
"minimist": "^1.2.0",
"node-sass": "^4.9.4",
"null-loader": "^3.0.0",
"open": "^7.0.0",
"postcss": "^7.0.5",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.3",
"react-addons-test-utils": "^15.0.0",
"react-hot-loader": "^4.3.11",
"redux-logger": "^3.0.6",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"url-loader": "^2.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"chalk": "^3.0.0",
"classnames": "^2.2.5",
"collections": "^5.1.5",
"compression": "^1.7.3",
"core-js": "^3.3.3",
"express": "^4.16.4",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.15.0",
"mobile-detect": "^1.4.3",
"moment": "^2.22.2",
"moment-business-days": "^1.1.3",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^16.5.2",
"react-markdown": "^4.2.2",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"store": "^2.0.12"
}
}