-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
67 lines (67 loc) · 2.12 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
{
"name": "react-bootstrap-utils",
"version": "0.26.3",
"description": "React bootstrap library",
"main": "dist/main.js",
"scripts": {
"build": "rollup --config",
"start": "webpack serve --mode development",
"docs": "webpack --mode development",
"release": "standard-version",
"prepublishOnly": "npm run build",
"eslint": "eslint {src,demo}\"/**/*.\"{js,jsx}",
"prettier": "prettier {src,demo}\"/**/*.\"{js,jsx}",
"ci": "npm run prettier -- --list-different && npm run eslint",
"lint": "npm run eslint -- --fix",
"format": "npm run prettier -- --write",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assisrafael/react-bootstrap-utils.git"
},
"keywords": [],
"author": "Igor Rafael <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assisrafael/react-bootstrap-utils/issues"
},
"homepage": "https://github.com/assisrafael/react-bootstrap-utils#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^11.0.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.16.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"js-var-type": "^0.2.6",
"lodash-es": "^4.17.20",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"rollup": "^2.35.1",
"standard-version": "^9.0.0",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"peerDependencies": {
"@babel/runtime": "^7.12.5",
"js-var-type": "^0.2.6",
"lodash-es": "^4.17.20",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}