-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.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
{
"name": "instaShabServer",
"main": "index.js",
"version": "0.0.1",
"description": "Server of the instaShab project.",
"author": "Balmes Florian",
"keywords": [
"insta",
"ugram",
"server"
],
"license": "MIT",
"contributors": [],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"aws-sdk": "^2.28.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.16.1",
"casual": "^1.5.12",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"connect-mongo": "^1.3.2",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "~4.1.1",
"express-session": "^1.15.1",
"helmet": "^3.5.0",
"http-status-codes": "^1.1.6",
"jwt-simple": "^0.5.1",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"mongoose": "^4.8.2",
"multer": "^1.3.0",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"sharp": "^0.17.3",
"socket.io": "^1.7.3",
"winston": "^2.3.1",
"winston-aws-cloudwatch": "^1.4.0"
},
"scripts": {
"start": "nodemon app/index.js --exec babel-node",
"build" : "babel app -d dist",
"serve" : "node dist/index.js",
"test": "./node_modules/mocha/bin/mocha"
},
"engines": {
"node": "6.10.0"
}
}