This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "what-to-watch",
"version": "1.0.0",
"private": true,
"description": "Личный проект «Что посмотреть» от HTML Academy",
"scripts": {
"build": "webpack --mode development",
"start": "webpack-dev-server",
"eslint": "eslint src/**/*.js src/**/*.jsx",
"test": "npm run eslint && jest",
"jest": "jest",
"cypress": "cypress open",
"cypress-run": "cypress run"
},
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"axios-mock-adapter": "1.16.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"cypress": "4.0.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.2.2",
"eslint-config-htmlacademy": "0.5.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.14.3",
"jest": "24.9.0",
"react-test-renderer": "16.8.6",
"redux-mock-store": "1.5.3",
"webpack": "4.39.2",
"webpack-cli": "3.3.7",
"webpack-dev-server": "3.8.0"
},
"engines": {
"node": "10"
},
"dependencies": {
"axios": "0.21.1",
"classnames": "2.2.6",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-loadable": "5.5.0",
"react-notifications": "1.4.3",
"react-redux": "7.1.3",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0"
}
}