-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.39 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
{
"name": "weather-page",
"version": "1.0.0",
"description": "Frontend Page for weather API fetching",
"main": "index.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js --open 'chrome'",
"clean": "rimraf dist",
"build": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"author": "Devang Singh",
"license": "ISC",
"devDependencies": {
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^2.0.0",
"html-webpack-plugin": "^5.1.0",
"mini-css-extract-plugin": "^1.3.6",
"prettier": "^2.2.1",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"date-fns": "^2.17.0",
"gh-pages": "^6.1.0",
"sass": "^1.55.0"
}
}