-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.91 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
{
"name": "reconnect.js",
"version": "1.3.0",
"description": "",
"main": "build",
"files": [
"build",
"example",
"src"
],
"scripts": {
"start": "tsc -w",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest -i --testPathIgnorePatterns example",
"release": "release-it",
"doc": "cd doc && npm start",
"doc:prepare": "cd doc && npm i",
"doc:build": "cd doc && npm run build",
"doc:deploy": "npm run doc:build && gh-pages -d doc/build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"eventemitter3": "^4.0.7"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@types/react": "^17.0.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.5.0",
"eslint-config-revtel": "^0.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"gh-pages": "^3.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"release-it": "^14.2.2",
"typescript": "^4.2.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.js": [
"eslint --fix",
"git add"
]
}
}