-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "forecast",
"description": "monitoreo de horario nacional e internacional",
"author": "YerkoPalma",
"version": "0.1.0",
"main": "server/index.js",
"files": [
"server"
],
"engines": {
"node": "11.x"
},
"scripts": {
"test": "standard --verbose | snazzy && tape test.js | tap-summary",
"build": "node_modules/.bin/webpack --config webpack.config.js --mode production",
"start": "node server/index.js"
},
"repository": "YerkoPalma/forecast",
"license": "MIT",
"keywords": [
"monitoreo",
"web",
"nacional",
"internacional",
"horario",
"temperatura",
"ubicacion"
],
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.4",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap-summary": "^4.0.0",
"tape": "^4.10.1",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"redis": "^2.8.0",
"serve-handler": "^6.0.0",
"ws": "^7.0.0"
}
}