-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-starter",
"version": "0.1.0",
"author": "Sebastian <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack --env production",
"serve": "webpack serve",
"start": "serve --no-clipboard --listen 8080 ./public",
"test": "jest",
"test:e2e": "cypress run --headless --config-file ./cypress.json",
"coverage": "jest --coverage --coverageReporters=lcov --coverageReporters=cobertura",
"cypress": "cypress open",
"lint": "tsc --noEmit && eslint src/**/*.{ts,tsx,js,jsx} --fix",
"ci": "run-p --race start test:e2e"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@types/styled-components": "^5.1.7",
"babel-loader": "^8.2.2",
"core-js": "^3.8.1",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"html-webpack-plugin": "^4.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"regenerator-runtime": "^0.13.7",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"styled-components": "^5.2.1",
"terser-webpack-plugin": "^5.0.3",
"typescript": "^4.1.3",
"webpack": "^5.10.2",
"webpack-cli": "^4.2.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.2",
"@jest/globals": "^26.6.2",
"@svgr/webpack": "^5.5.0",
"@testing-library/dom": "^7.29.2",
"@testing-library/jest-dom": "~5.9.0",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.0",
"@types/node": "^14.14.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.12",
"@types/redux": "^3.6.0",
"@types/redux-mock-store": "^1.0.2",
"@types/testing-library__jest-dom": "^5.9.5",
"@types/testing-library__react": "^10.2.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-plugin-istanbul": "^6.0.0",
"css-loader": "^5.0.1",
"cypress": "^6.1.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.3",
"npm-run-all": "^4.1.5",
"redux-mock-store": "^1.5.4",
"url-loader": "^4.1.1",
"webpack-dev-server": "^3.11.0"
}
}