-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "web-react-components",
"repository": {
"type": "git",
"url": "https://github.com/ChristophP/web-react-components"
},
"version": "1.4.2",
"description": "A web component wrapper around React Components",
"main": "dist/bundle.js",
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production",
"test": "echo \"TODO: add tests\"",
"lint": "eslint webpack.config.js src",
"prepublishOnly": "npm run build"
},
"files": [
"dist/bundle.js"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.13.0",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"pre-commit": {
"run": "lint, test",
"silent": true
}
}