-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "react-testing",
"version": "1.0.0",
"description": "react testing",
"main": "index.js",
"repository": "https://github.com/react-skg/react-testing.git",
"author": "Pavlos Koutoglou <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"test": "npm run test:unit && npm run test1 && npm run test2",
"test1": "node ./e2e/tests.js",
"test2": "mocha ./e2e/searchtests.js",
"test:unit": "jest --env=jsdom"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/jest-css-modules"
},
"transformIgnorePatterns": [
"node_modules/(?!(react-native|my-project|redux-persist|react-native-linear-gradient|react-native-vector-icons|react-navigation)/)"
]
},
"peerDependencies": {
"react": "^15.5.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.4.3",
"jest-cli": "^22.4.3",
"jest-css-modules": "^1.1.0",
"mini-css-extract-plugin": "^0.4.0",
"react-refetch": "^1.0.4",
"regenerator-runtime": "^0.11.1",
"webdriverio": "^4.12.0",
"webpack": "^4.8.1",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@applitools/eyes.webdriverio": "^1.1.0",
"classnames": "^2.2.5",
"coffee-script": "^1.12.7",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.3.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"rest": "^2.0.0"
}
}