-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.72 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.72 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "weather",
"version": "0.13.0",
"description": "Weather app",
"main": "index.tsx",
"scripts": {
"lint": "eslint .",
"build": "webpack",
"build-prod": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --mode development --watch --open --hot",
"check-types": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"check": "eslint . && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/it-amalker/Weather.git"
},
"keywords": [
"weather",
"world",
"city"
],
"bugs": {
"url": "https://github.com/it-amalker/Weather/issues"
},
"author": "Vadim Dmitrenko <it.amalker@gmail.com> (amalker)",
"license": "ISC",
"homepage": "https://github.com/it-amalker/Weather#readme",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.10.5",
"@types/classnames": "^2.2.11",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.5",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.23",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.1",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.10.7",
"css-loader": "^3.6.0",
"dotenv-webpack": "^2.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"date-fns": "^2.15.0",
"file-loader": "^6.0.0",
"lodash": "^4.17.19",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-hook-form": "^6.0.7",
"styled-components": "^5.1.1",
"webpack": "^4.43.0"
}
}