-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 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
66
67
68
69
70
71
{
"name": "react-feature-flipper",
"version": "2.0.2",
"license": "MIT",
"description": "React HOC for feature toggling",
"repository": "github:erhangundogan/react-feature-flipper",
"engines": {
"node": ">=8"
},
"bugs": "https://github.com/erhangundogan/react-feature-flipper/issues",
"homepage": "https://github.com/erhangundogan/react-feature-flipper",
"keywords": [
"react",
"reactjs",
"feature-flipper",
"feature-toggles",
"feature-flags",
"hoc",
"a/b testing"
],
"author": "Erhan Gundogan <erhan.gundogan@gmail.com>",
"main": "dist/react-feature-flipper.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "yarn build",
"lint": "./node_modules/eslint/bin/eslint.js --config .eslintrc src/",
"test": "jest --config jest.config.js",
"build": "webpack --mode=production",
"dev": "webpack-dev-server --open --mode=development"
},
"dependencies": {
"react": "16.7.0",
"react-dom": "16.7.0"
},
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.2.3",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"clean-webpack-plugin": "1.0.0",
"eslint": "5.11.1",
"eslint-config-airbnb": "17.1.0",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.1.2",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"html-webpack-plugin": "3.2.0",
"jest": "23.6.0",
"react-testing-library": "5.4.4",
"webpack": "4.19.1",
"webpack-cli": "3.2.0",
"webpack-dev-server": "3.1.14"
},
"peerDependencies": {
"react": "16.7.0",
"react-dom": "16.7.0"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}