-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.11 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
{
"name": "react-testing-library-by-example",
"version": "1.0.0",
"description": "Learn how to test react and redux by sample using Jest, each of the samples contains a readme.md file that indicates the purpose of the sample plus an step by step guide to reproduce it.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack/dev.js",
"prebuild": "rimraf dist",
"build": "webpack --config ./config/webpack/prod.js",
"test": "jest -c ./config/test/jest.json --verbose",
"test:watch": "npm run test -- --watchAll -i",
"pretest:coverage": "rimraf coverage",
"test:coverage": "jest -c ./config/test/jest.coverage.json"
},
"author": "Lemoncode",
"repository": "https://github.com/Lemoncode/react-testing-by-example",
"license": "MIT",
"dependencies": {
"bootstrap-css-only": "^4.4.1",
"history": "^4.10.1",
"lc-form-validation": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@hot-loader/react-dom": "^16.11.0",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/deep-freeze": "^0.1.2",
"@types/jest": "^25.1.2",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.7",
"@types/react-router": "^5.1.4",
"@types/webpack-env": "^1.15.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.4.2",
"deep-freeze": "0.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.1.0",
"react-test-renderer": "^16.12.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.1",
"style-loader": "^1.1.3",
"ts-jest": "^25.2.0",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}