-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.31 KB
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
{
"name": "react-e2e-storybook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"start": "webpack serve --mode development --open",
"build": "webpack --config ./webpack.production.config.js",
"lint": "eslint . --ext .js --ext .jsx",
"stylelint": "stylelint **/*.scss",
"stylelint-fix": "stylelint **/*.scss --fix",
"test": "jest --coverage",
"test:watch": "jest --watchAll --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"cypress:open": "cypress open"
},
"keywords": [
"webpack",
"react",
"end to end",
"tutorial",
"setup"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"cypress": "^9.6.0",
"eslint": "^8.14.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"mini-css-extract-plugin": "^2.6.0",
"react-refresh": "^0.12.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"style-loader": "^2.0.0",
"stylelint": "^14.8.1",
"stylelint-scss": "^4.2.0",
"stylelint-webpack-plugin": "^3.2.0",
"webpack": "^5.27.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"i18next": "^21.6.16",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.16.7",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0"
}
}