forked from SAP/Webchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "webchat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && NODE_ENV=production npm run build:webpack",
"build:webpack": "node bin/build.js",
"start": "npm run clean && node bin/build-dev",
"prettier": "prettier --write \"src/**/*.?(js|?(s)css|json)\" && eslint --fix src",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.5",
"cookies-js": "^1.2.3",
"extract-text-webpack-plugin": "^3.0.2",
"lodash": "^4.17.4",
"progress-bar-webpack-plugin": "^1.10.0",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-redux": "^5.0.6",
"react-render": "^1.2.1",
"react-slick": "^0.15.4",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-thunk": "^2.2.0",
"sanitize-html-react": "^1.13.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-prettier": "^2.7.0",
"eslint-config-zavatta": "^6.0.1",
"eslint-config-zavatta-react": "^2.3.0",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"node-sass": "^4.6.1",
"path": "^0.12.7",
"postcss-loader": "^2.0.8",
"precss": "^2.0.0",
"prettier": "^1.8.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}