-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
93 lines (93 loc) · 2.52 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
{
"name": "team3",
"version": "1.0.0",
"description": "photo quest",
"main": "app.js",
"scripts": {
"test": "mocha tests --recursive",
"lint:js": "eslint --fix .",
"lint": "npm-run-all lint:*",
"precommit": "npm run lint",
"prepush": "npm run lint",
"deploy:static": "surge -p ./public -d kafkatist.surge.sh",
"build": "webpack",
"generate": "node generator/mlabgenerator.js",
"start": "node app.js",
"start:dev": "node app.js --NODE_ENV=development",
"dev": "webpack --config webpack.dev.config.js && npm run start:dev",
"watch": "webpack --progress --colors --watch",
"defineKeys": "node apiKey.js --API_KEY=$API_KEY"
},
"repository": {
"type": "git",
"url": "git+https://github.com/urfu-2015/team3.git"
},
"keywords": [
"photo",
"quest"
],
"author": "team3",
"license": "MIT",
"bugs": {
"url": "https://github.com/urfu-2015/team3/issues"
},
"homepage": "https://github.com/urfu-2015/team3#readme",
"dependencies": {
"async": "^1.5.2",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.0",
"cloudinary": "^1.3.1",
"cookie-parser": "^1.4.1",
"datauri": "^1.0.4",
"express": "^4.13.4",
"express-session": "^1.13.0",
"geolib": "^2.0.21",
"hamming-distance": "^1.0.0",
"handlebars-layouts": "^3.1.3",
"hbs": "^4.0.0",
"lodash": "^4.6.1",
"minimist": "^1.2.0",
"mongodb": "^2.1.11",
"mongolab-data-api": "^1.1.4",
"morgan": "^1.7.0",
"multer": "^1.1.0",
"natural": "^0.4.0",
"nodemailer": "^2.3.2",
"passport": "^0.3.2",
"passport-facebook": "^2.1.0",
"passport-google-oauth2": "^0.1.6",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"passport-vkontakte": "^0.4.0",
"swiper": "^3.3.1"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"bootstrap-styl": "^5.0.5",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"eslint": "^2.4.0",
"eslint-config-xo": "^0.12.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"husky": "^0.11.3",
"mocha": "^2.4.5",
"mockery": "^1.6.2",
"npm-run-all": "^1.5.3",
"sinon": "^1.17.3",
"style-loader": "^0.13.0",
"stylus-loader": "^1.5.1",
"supertest": "^1.2.0",
"surge": "^0.17.7",
"svg-url-loader": "^1.0.3",
"webpack": "^1.12.14"
},
"engines": {
"node": "4.4.0"
}
}