-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
88 lines (88 loc) · 2.45 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
{
"name": "team1",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"watch": "webpack --progress --colors --watch",
"run-dev": "webpack-dev-server --config=webpack.dev.config.js --hot --inline --content-base=public/",
"clean": "rimraf node_modules/",
"fill": "node ./scripts/fillDB.js",
"lint": "jscs .",
"test": "mocha --recursive test/",
"prepush": "npm-run-all lint test",
"filldb": "node ./scripts/fillDb.js",
"deploy": "webpack --config=webpack.config.js && surge -p ./public -d urfu2016team1.surge.sh"
},
"dependencies": {
"async": "^1.5.2",
"body-parser": "~1.13.2",
"cloudinary": "^1.3.1",
"config": "^1.19.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.2.0",
"cookie-parser": "~1.3.5",
"crypto-js": "^3.1.6",
"debug": "~2.2.0",
"exif-parser": "^0.1.9",
"exports": "0.0.1",
"exports-loader": "^0.6.3",
"express": "~4.13.1",
"express-session": "^1.13.0",
"geolib": "^2.0.21",
"imports-loader": "^0.6.5",
"moment": "^2.13.0",
"mongoosastic": "^4.0.2",
"mongoose": "^4.4.7",
"mongoose-validators": "^0.1.0",
"morgan": "~1.6.1",
"multer": "^1.1.0",
"node-fetch": "^1.5.1",
"nodemailer": "^2.3.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"rimraf": "^2.5.2",
"serve-favicon": "~2.3.0",
"sha256": "^0.2.0",
"swig": "^1.4.2",
"whatwg-fetch": "^0.11.0",
"yandex-map-react": "^1.0.0-beta.2"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.0.1",
"file-loader": "^0.8.5",
"husky": "^0.11.3",
"jscs": "^2.11.0",
"mocha": "^2.4.5",
"mongodb": "^2.1.7",
"node-mocks-http": "^1.5.2",
"npm-run-all": "^1.5.3",
"postcss-loader": "^0.8.2",
"prepush": "^3.1.8",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.5.2",
"should": "^8.2.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.2",
"stylus-loader": "^2.0.0",
"supertest": "^1.2.0",
"surge": "^0.18.0",
"underscore": "^1.8.3",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1"
},
"engines": {
"node": "4.4.0"
}
}