-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "react-chat-plugin",
"version": "0.1.17",
"description": "A chat widget for react app",
"main": "dist/main.js",
"scripts": {
"test": "jest --config ./jest.config.js",
"build": "webpack --mode production --display-modules",
"test:watch": "npm run-script test --watch",
"eslint": "npx eslint . --fix",
"prettier": "./node_modules/.bin/prettier --write \"{src,tests}/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"snyk": "./node_modules/.bin/snyk test",
"prepush": "npm test --watchAll=false && npm run-script eslint && npm run-script snyk",
"precommit": "npm test --watchAll=false && npm run-script eslint && npm run-script snyk",
"prepublishOnly": "git push --tags",
"start": "webpack-dev-server --open --mode=development --config example/webpack.config.js"
},
"dependencies": {
"moment": "^2.29.1",
"react-textarea-autosize": "^7.1.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@svgr/webpack": "^5.5.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.2.2",
"css-loader": "^3.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-standard": "^4.1.0",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"jest": "^24.9.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"snyk": "^1.439.1",
"style-loader": "^1.3.0",
"url-loader": "^3.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run-script precommit",
"pre-push": "npm run-script prepush && npm run-script build"
}
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"prop-types": "^15.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leon0707/react-chat-plugin.git"
},
"keywords": [
"chat",
"react",
"messenger",
"chatbot",
"bot"
],
"author": "Leon Feng <leonlibinfeng@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leon0707/react-chat-plugin/issues"
},
"homepage": "https://github.com/leon0707/react-chat-plugin",
"snyk": true
}