-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.3 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "server-weather-station",
"version": "1.0.0",
"description": "WebApp for a Personal Weather Station",
"keywords": [
"express-js",
"server",
"react",
"weather-station"
],
"repository": {
"type": "git",
"url": "https://github.com/SeBassTian23/Server-WeatherStation.git"
},
"bugs": {
"url": "https://github.com/SeBassTian23/Server-WeatherStation/issues"
},
"author": {
"name": "Sebastian Kuhlgert",
"email": "sebastian.kuhlgert@gmail.com",
"url": "https://github.com/SeBassTian23"
},
"homepage": "https://github.com/SeBassTian23/Server-WeatherStation",
"contributors": [
{
"name": "Sebastian Kuhlgert",
"email": "sebastian.kuhlgert@gmail.com",
"url": "https://github.com/SeBassTian23"
}
],
"private": true,
"scripts": {
"start": "export NODE_ENV=production && node ./bin/www",
"client": "webpack-dev-server --config webpack.dev.js --devtool inline-source-map --hot",
"server": "NODE_ENV=development nodemon ./bin/www",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "webpack --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@json2csv/plainjs": "^7.0.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.1",
"chart.js": "^4.4.0",
"chartjs-community-adapter-dayjs": "^1.0.2",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-zoom": "^2.0.1",
"compression": "^1.7.4",
"cookie-parser": "~1.4.6",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "~4.18.2",
"helmet": "^7.0.0",
"http-errors": "~2.0.0",
"iaq": "^1.1.0",
"less-middleware": "~3.1.0",
"lodash": "^4.17.21",
"lunarphase-js": "^2.0.1",
"mongoose": "^7.5.3",
"morgan": "~1.10.0",
"pug": "^3.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.9.0",
"react-calendar": "^4.6.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.16.0",
"serve-favicon": "^2.5.0",
"sqlite3": "^5.1.6",
"suntimes": "^6.0.3",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.18.6",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.1",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^5.5.3",
"html-webpack-pug-plugin": "^4.0.0",
"mini-css-extract-plugin": "^2.7.6",
"nodemon": "^3.0.1",
"purgecss-webpack-plugin": "^5.0.0",
"react-scripts": "^5.0.1",
"style-loader": "^3.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^6.1.1",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}