forked from airqo-platform/AirQo-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.03 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
{
"name": "website",
"version": "1.0.0",
"description": "AirQo website",
"main": "index.js",
"scripts": {
"serve": "webpack serve --config webpack.dev.config.js --mode development",
"standalone": "webpack serve --config webpack.fullapp.config.js --mode development --open",
"build": "webpack --mode production"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.17.9",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"react-scroll": "^1.8.6",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"underscore": "^1.13.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@svgr/webpack": "^5.5.0",
"babel-loader": "^8.2.2",
"classnames": "^2.3.1",
"css-loader": "^6.2.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"node-sass": "^6.0.1",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.2.1",
"url-loader": "^4.1.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
}
}