-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "six-cities",
"version": "1.0.0",
"private": true,
"description": "Учебный проект «Шесть городов» от HTML Academy",
"scripts": {
"eslint": "eslint --ext .jsx --ext .tsx src/",
"test": "npm run eslint && jest",
"build": "webpack --mode production",
"start": "webpack-dev-server"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@types/jest": "25.2.1",
"@types/react": "16.9.34",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"axios-mock-adapter": "1.18.1",
"babel-jest": "25.3.0",
"babel-loader": "8.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-htmlacademy": "0.5.2",
"eslint-plugin-react": "7.19.0",
"jest": "25.3.0",
"react-test-renderer": "16.13.1",
"ts-jest": "25.4.0",
"ts-loader": "7.0.2",
"typescript": "3.8.3",
"utility-types": "3.10.0",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"axios": "1.6.0",
"leaflet": "1.6.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.1.2"
}
}