-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.87 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
{
"name": "weather-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "webpack-dev-server --env.NODE_ENV=development --progress",
"lint": "npm run lint-css && npm run lint-js",
"lint-js": "npx eslint --ext .jsx --ext .js .",
"lint-css": "npx stylelint \"**/*.scss\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"classnames": "^2.2.6",
"dayjs": "^1.10.4",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"react-live-clock": "^5.0.15",
"react-moment": "^1.1.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.6",
"node-sass": "^4.14.1",
"react-is": "^16.13.1",
"redux-devtools-extension": "^2.13.8",
"sass-loader": "^10.0.2",
"style-loader": "^1.3.0",
"stylelint": "^13.7.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"svg-inline-loader": "^0.8.2",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}