-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "team4",
"version": "0.1.1b",
"private": true,
"scripts": {
"build": "webpack --progress --colors",
"lint": "npm-run-all lint:*",
"lint:js": "eslint --fix .",
"lint:css": "stylelint **/*.css",
"start": "node ./bin/www.js",
"tests": "mocha tests --recursive --timeout 15000",
"prepush": "npm run lint && npm run tests",
"watch": "webpack --progress --colors --watch",
"static": "npm run build && surge -p ./public -d creepy404nf.surge.sh"
},
"dependencies": {
"body-parser": "1.13.2",
"config": "1.19.0",
"cookie-parser": "1.3.5",
"debug": "2.2.0",
"express": "4.13.1",
"file-loader": "0.8.5",
"flickrapi": "0.4.2",
"fuzzysearch": "1.0.3",
"geolib": "2.0.21",
"handlebars-layouts": "3.1.3",
"hbs": "4.0.0",
"mongodb": "2.1.7",
"morgan": "1.6.1",
"multer": "1.1.0",
"request-promise": "3.0.0",
"requestify": "0.1.17",
"surge": "0.18.0",
"transliteration": "0.1.1",
"validator": "5.1.0"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"chai": "3.5.0",
"css-loader": "0.23.1",
"eslint": "2.3.0",
"eslint-config-xo": "0.12.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"husky": "0.11.4",
"mocha": "2.4.5",
"npm-run-all": "1.5.2",
"sinon": "1.17.3",
"sinon-chai": "2.8.0",
"style-loader": "0.13.0",
"stylelint": "5.0.0",
"stylelint-config-standard": "4.0.0",
"supertest": "1.2.0",
"webpack": "1.13.0"
},
"engines": {
"node": "4.4.0"
}
}