-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.86 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-google-optimize",
"version": "0.4.0",
"description": "React helpers for Google Optimize A/B testing.",
"main": "build/react-google-optimize.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gustavobini/react-google-optimize.git"
},
"author": {
"name": "Gustavo Bini",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gustavobini/react-google-optimize/issues"
},
"homepage": "https://github.com/gustavobini/react-google-optimize#readme",
"engines": {
"node": ">=8.9.4"
},
"scripts": {
"start": "webpack --watch --mode production",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js",
"lint": "./node_modules/.bin/eslint src/**/*.{js,jsx}"
},
"jest": {
"setupFiles": [
"<rootDir>/src/setupTests.js"
]
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-react-app": "^4.0.1",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.8.0",
"jest-dom": "^3.4.0",
"prettier": "1.17.1",
"react-testing-library": "^8.0.1",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6"
}
}