-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
executable file
·78 lines (78 loc) · 2.49 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
{
"name": "react-slack-chat",
"version": "1.15.1",
"description": "A Beautiful Gooey / Material Design Slack Chat Web Integrating Widget.",
"private": false,
"main": "./dist/react-slack-chat.js",
"scripts": {
"start": "cross-env SYSTEM_HOOKS=true npx webpack-dev-server --config ./build/webpack.config.js --mode development",
"build": "npm run build:lite && npm run build:withHooks",
"deploy": "npm run build && cross-env SYSTEM_HOOKS=true npx webpack --config ./build/webpack.config.deploy.js --mode development && gh-pages -d ./dist/example",
"build:lite": "npx webpack --config ./build/webpack.config.prod.js -p --mode production",
"build:withHooks": "cross-env SYSTEM_HOOKS=true npx webpack --config ./build/webpack.config.prod.js -p --mode production",
"stats": "npx webpack --config ./build/webpack.config.prod.js -p --json > stats.json",
"test": "echo \"No test specified\" && exit 0",
"lint": "npx prettier --write ./src/**/*.js"
},
"keywords": [],
"bugs": {
"url": "https://github.com/5punk/react-slack-chat/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/5punk/react-slack-chat.git"
},
"homepage": "https://github.com/5punk/react-slack-chat#readme",
"author": "Avanish Pathak",
"license": "ISC",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"singleQuote": true,
"tabWidth": 2
},
"lint-staged": {
"*.{jsx,js,json,scss}": [
"npm run lint",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"css-loader": "^2.1.1",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "~3.2.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"node-sass": "^4.14.1",
"public-ip": "^4.0.3",
"react-hot-loader": "^4.8.4",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.31.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.11.1"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"classnames": "^2.2.6",
"gh-emoji": "^0.2.5",
"html2canvas": "^1.0.0-rc.1",
"prop-types": "15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"slack": "^11.0.2"
}
}