-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "react-outbrain-widget",
"version": "1.5.0",
"description": "A component to embed a outbrain widget inside a react app",
"main": "build/index.js",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"prepublish": "rm -rf ./dist && npm run build",
"lint": "eslint --ext js,jsx src",
"test": "true"
},
"author": {
"name": "agroisman",
"email": "[email protected]"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.25.4",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^8.3.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}