-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.53 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
{
"name": "yolo.tips",
"version": "0.0.0",
"description": "Cheap Flight Suggester, that suggests you weekend trips based on the cheapest deals it finds using SkyScanner.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && webpack --colors --display-error-details --config webpack.production.config.js",
"start": "npm run build && NODE_ENV=production node .",
"watch": "webpack --colors --display-error-details --config webpack.config.js && webpack-dev-server",
"mon": "nodemon . --ignore dist --ignore client",
"dev": "npm run watch & npm run mon",
"lint": "standard --verbose | snazzy",
"minigun": "minigun run minigun.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xicombd/yolo.tips.git"
},
"author": "Francisco Dias <[email protected]> (http://franciscodias.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xicombd/yolo.tips/issues"
},
"homepage": "https://github.com/xicombd/yolo.tips#readme",
"dependencies": {
"airport-codes": "^1.0.2",
"async": "^1.4.2",
"axios": "^0.5.4",
"babel-core": "^5.8.24",
"babel-loader": "^5.3.2",
"boom": "^2.8.0",
"bootstrap-sass": "^3.3.5",
"css-loader": "^0.16.0",
"file-loader": "^0.8.4",
"hapi": "^10.0.0",
"inert": "^3.0.1",
"joi": "^6.7.0",
"json-loader": "^0.5.3",
"lodash.get": "^3.7.0",
"lodash.groupby": "^3.1.1",
"lodash.indexby": "^3.1.1",
"lodash.isequal": "^3.0.4",
"lodash.mapvalues": "3.0.1",
"lodash.sortby": "^3.1.5",
"lodash.startswith": "^3.0.1",
"lodash.uniq": "^3.2.2",
"memoizee": "^0.3.9",
"moment": "^2.10.6",
"node-sass": "^3.3.2",
"qs": "^5.1.0",
"range": "0.0.3",
"react": "^0.13.3",
"react-bootstrap": "^0.25.2",
"react-fa": "^4.0.0",
"react-select": "^0.6.10",
"rimraf": "^2.4.3",
"sass-loader": "^2.0.1",
"sphere-knn": "^1.2.1",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"vision": "^3.0.0",
"webpack": "^1.12.0",
"yolo-tips": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^4.1.0",
"minigun": "^0.2.1",
"nodemon": "^1.5.0",
"pre-commit": "^1.1.1",
"react-hot-loader": "^1.3.0",
"snazzy": "^2.0.1",
"standard": "^5.2.2",
"watchify": "^3.3.1",
"webpack-dev-server": "^1.10.1"
},
"engines": {
"node": ">=4.0.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"./dist/*",
"./node_modules/*"
]
},
"pre-commit": [
"lint"
]
}