forked from Mergifyio/react-crisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "react-crisp",
"version": "0.1.4",
"license": "Apache-2.0",
"description": "React component implementation of Crisp the messaging app",
"homepage": "https://github.com/Mergifyio/react-crisp",
"main": "./dist/crisp.js",
"keywords": [
"React",
"Crisp",
"npm"
],
"repository": {
"type": "git",
"url": "https://github.com/Mergifyio/react-crisp"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
]
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": [
"airbnb",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jest/recommended"
]
},
"dependencies": {
"prop-types": ">=15.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.0",
"babel-loader": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-module-utils": "^2.6.0",
"eslint-plugin-flowtype": "^6.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-order-alphabetical": "^1.0.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"webpack-cli": "^4.2.0",
"webpack-module": "^0.1.0"
},
"scripts": {
"eslint": "eslint --ext .js --ext .jsx ./src",
"build": "webpack",
"test": "jest"
}
}