-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 2.38 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
{
"name": "photo-quests",
"description": "Сервис фотоквеста от команды Лавразия",
"version": "1.0.0",
"license": "MIT",
"author": "Лавразия",
"main": "index.js",
"scripts": {
"start": "node .",
"build": "webpack --config webpack.build.config.js",
"test": "npm-run-all test:*",
"test:unit": "mocha --recursive ./tests/unit",
"test:integration": "mocha --recursive ./tests/integration",
"dev": "npm-run-all --parallel dev:*",
"dev:watch": "webpack --progress --color --watch",
"dev:server": "nodemon .",
"lint": "npm-run-all lint:*",
"lint:stylus": "stylint ./views",
"lint:js": "eslint .",
"clean": "npm-run-all clean:*",
"clean:public": "rimraf public",
"clean:modules": "rimraf node_modules",
"deploy:surge": "surge --project ./public --domain team3.surge.sh"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"csurf": "^1.9.0",
"dotenv": "^4.0.0",
"dotenv-expand": "^4.0.1",
"email-verification": "^0.4.6",
"exif-js": "^2.2.1",
"express": "^4.15.2",
"express-recaptcha": "^2.1.0",
"express-session": "^1.15.1",
"geolib": "^2.0.22",
"hbs": "^4.0.1",
"hbs-utils": "0.0.4",
"helmet": "^3.5.0",
"http-status": "^1.0.1",
"identicon.js": "^2.2.1",
"mongoose": "^4.8.6",
"morgan": "^1.8.1",
"multer": "^1.3.0",
"nodemailer": "^4.0.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"passport-vkontakte": "git+https://github.com/gebon/passport-vkontakte.git#3f0ca055fcc2989be00ed35b063beb977e80d977",
"sanitize-html": "^1.14.1",
"serve-favicon": "^2.4.3"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"css-loader": "^0.27.1",
"eslint": "^3.18.0",
"eslint-config-xo": "^0.18.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"style-loader": "^0.13.2",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"surge": "^0.19.0",
"webpack": "^2.2.1"
}
}