-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.9 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-flash-message",
"version": "1.0.8",
"description": "Simple component that unmounts a component after a given delay.",
"main": "build/index.js",
"author": "Daniel Sneijers <[email protected]> (https://github.com/danielsneijers)",
"repository": {
"type": "git",
"url": "https://github.com/danielsneijers/react-flash-message.git"
},
"license": "MIT",
"scripts": {
"start": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "jest",
"lint": "eslint --ext .js --ext .jsx src --fix",
"prettier": "prettier --trailing-comma es5 --single-quote --write 'src/**/*.{js,jsx}'",
"precommit": "lint-staged"
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"yarn prettier",
"yarn lint",
"git add"
]
}
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-testing-library": "^4.11.0",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"webpack": "^5.50.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0"
},
"peerDependencies": {
"react": ">=15 <= 17",
"react-dom": ">=15 <= 17"
},
"packageManager": "[email protected]"
}