-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
89 lines (89 loc) · 2.48 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-open-weather",
"bin": {},
"version": "1.3.5",
"description": "React Weather component",
"main": "lib/ReactWeather.js",
"engines": {
"node": ">=16.16.0"
},
"peerDependencies": {
"react": ">=17.0.1",
"react-dom": ">=17.0.1"
},
"dependencies": {
"@emotion/styled": "^11.10.0",
"axios": "^1.6.0",
"dayjs": "^1.9.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/register": "^7.12.1",
"@babel/runtime": "^7.12.5",
"@testing-library/react-hooks": "^8.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"autoprefixer-loader": "^3.2.0",
"axios-mock-adapter": "^1.22.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.2",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"ignore-loader": "^0.1.2",
"ignore-styles": "^5.0.1",
"jest": "^28.1.3",
"jest-watch-typeahead": "^2.0.0",
"jsdom": "^20.0.0",
"mockdate": "^3.0.2",
"np": "^7.0.0",
"prettier": "^2.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-test-renderer": "^17.0.1",
"webpack": "^5.8.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.9.3"
},
"scripts": {
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.build.js",
"start": "webpack serve --config webpack.config.dev.js --mode development --port 5000",
"test": "./node_modules/.bin/jest",
"test-dev": "./node_modules/.bin/jest --watch",
"lint": "./node_modules/.bin/eslint ./src/js ;exit 0",
"coverage": "./node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/farahat80/react-open-weather.git"
},
"bugs": {
"url": "https://github.com/farahat80/react-open-weather/issues"
},
"keywords": [
"react",
"component",
"babel",
"es2015",
"webpack",
"sass",
"es6",
"openweathermap",
"weatherbit"
],
"author": "Ahmed Farahat <[email protected]>",
"license": "MIT"
}