-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "vba-helpers",
"version": "1.0.0",
"private": true,
"author": "akzhar.taov@yandex.ru",
"description": "Frontend for vba-helpers",
"scripts": {
"test:eslint": "eslint --ext .tsx --ext .ts src/",
"test:jest": "jest",
"test": "npm run test:eslint && npm run test:jest",
"build": "webpack --mode production",
"start": "webpack-dev-server"
},
"engines": {
"node": "12.18.3",
"npm": "6.14.16"
},
"dependencies": {
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "7.2.2",
"react-router-dom": "6.0.2",
"redux": "4.0.5",
"redux-devtools-extension": "2.13.9",
"react-helmet": "6.1.0",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@babel/core": "7.12.17",
"@babel/preset-env": "7.12.13",
"@babel/preset-typescript": "7.17.12",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@testing-library/user-event": "12.8.1",
"@types/jest": "27.5.1",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.4",
"@types/react-helmet": "6.1.5",
"@types/react-redux": "7.1.19",
"@types/redux-mock-store": "1.0.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "8.2.2",
"css-loader": "5.0.2",
"eslint": "7.18.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest-dom": "4.0.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"file-loader": "6.2.0",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"mini-css-extract-plugin": "1.3.9",
"redux-mock-store": "1.5.4",
"sass": "1.43.5",
"sass-loader": "12.3.0",
"style-loader": "2.0.0",
"ts-jest": "28.0.5",
"ts-loader": "9.2.6",
"ts-node": "10.8.1",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.6.4",
"webpack": "5.40.0",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.2"
}
}