-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.58 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.58 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
{
"name": "what-to-watch",
"version": "1.0.0",
"private": true,
"description": "Личный проект «Что посмотреть» от HTML Academy",
"scripts": {
"eslint": "eslint --ext .tsx --ext .ts --ext .js src/",
"test": "npm run eslint && jest",
"build": "webpack --mode production",
"start": "webpack-dev-server"
},
"devDependencies": {
"@babel/core": "7.6.4",
"@babel/preset-env": "7.6.3",
"@babel/preset-react": "7.6.3",
"@babel/preset-typescript": "7.7.4",
"@types/jest": "24.0.23",
"@typescript-eslint/eslint-plugin": "2.9.0",
"@typescript-eslint/parser": "2.9.0",
"axios-mock-adapter": "1.17.0",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "5.13.0",
"eslint-config-htmlacademy": "0.5.2",
"eslint-plugin-react": "7.16.0",
"jest": "26.6.3",
"react-router-dom": "5.1.2",
"react-test-renderer": "16.10.2",
"redux-devtools-extension": "2.13.8",
"stylelint-config-htmlacademy": "0.1.4",
"ts-loader": "6.2.1",
"typescript": "3.7.2",
"utility-types": "3.10.0",
"webpack": "4.41.1",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.11.2"
},
"engines": {
"node": "10"
},
"dependencies": {
"axios": "0.21.2",
"kind-of": "^6.0.3",
"minimist": "^1.2.6",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-redux": "7.1.1",
"redux": "4.0.4",
"redux-mock-store": "1.5.3",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"serialize-javascript": "^3.1.0"
}
}