forked from Gulivertx/cbatmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.49 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
{
"name": "cbatmo",
"version": "2.0.0",
"description": "A Netatmo Weather Station Web-APP for Raspberry Pi & official Raspberry touchscreen",
"keywords": [
"dark sky",
"netatmo",
"weather-station",
"webapp"
],
"main": "index.js",
"repository": "[email protected]:Gulivertx/cbatmo.git",
"author": "Cédric Bapst <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev:start": "NODE_ENV=development concurrently -k \"webpack --watch --mode development\" \"node server.js\"",
"dev:analyse": "rimraf app && NODE_ENV=analyse webpack --mode production",
"build": "rimraf public/* && NODE_ENV=production webpack --progress --profile --bail -p --mode production"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"dark-sky-api": "^0.6.31",
"debug": "^4.1.1",
"ejs": "^2.6.1",
"express": "^4.16.4",
"http-errors": "^1.7.1",
"morgan": "^1.9.1",
"rotating-file-stream": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@mdi/font": "^3.4.93",
"@types/express": "^4.16.1",
"@types/node": "^11.9.4",
"@types/react": "^16.8.3",
"babel-loader": "8.0.5",
"chart.js": "^2.7.3",
"classnames": "^2.2.6",
"concurrently": "^4.1.0",
"cross-fetch": "^3.0.1",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"loadable-components": "^2.2.3",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"prop-types": "^15.7.2",
"raw-loader": "^1.0.0",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-idle-timer": "^4.2.3",
"react-redux": "^6.0.0",
"react-touch-screen-keyboard": "^1.0.0",
"react-transition-group": "^2.5.3",
"reboot.css": "^1.0.4",
"recharts": "^1.5.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"typeface-roboto": "^0.0.54",
"url-loader": "^1.1.2",
"weather-icons2": "^2.0.10",
"webpack": "^4.29.4",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.2.3"
}
}