-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.55 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
94
95
96
97
98
{
"name": "snaphole-api",
"version": "0.0.0",
"license": "MIT",
"contributors": [
"Thomas Devisscher <@devisscher>",
"Phuc Duong <@phucduong86>",
"Denis Carriere, <@DenisCarriere>"
],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/YOWCT/YOWCT/SnapHole-API.git"
},
"now": {
"name": "snaphole",
"alias": [
"snaphole"
],
"env": {
"NODE_ENV": "production",
"APP_NAME": "SnapHole",
"BASE_URL": "https://snaphole.io",
"PORT": 8089,
"DB_PASSWORD": "@mongodb_atlas_password",
"MAILGUN_DOMAIN": "mg.snaphole.io",
"MAILGUN_KEY": "@mailgun_key",
"FROM_EMAIL": "[email protected]",
"AWS_BUCKET": "snap-hole",
"AWS_ACCESS_KEY_ID": "@aws_access_key_id",
"AWS_SECRET_ACCESS_KEY": "@aws_secret_access_key"
}
},
"scripts": {
"lint": "node_modules/.bin/esw",
"lint:watch": "npm run lint -- --watch",
"dev": "npm-run-all --parallel app lint:watch",
"start": "node bin/www",
"test": "jest",
"app": "nodemon --exec ./bin/www --config nodemon.json",
"deploy": "now -e --token $NOW_TOKEN --npm",
"alias": "now alias --token=$NOW_TOKEN"
},
"dependencies": {
"@turf/boolean-contains": "^4.6.1",
"@turf/helpers": "^4.6.0",
"async": "^2.5.0",
"aws-sdk": "^2.89.0",
"bluebird": "^3.5.0",
"body-parser": "~1.16.0",
"busboy": "^0.2.14",
"connect-busboy": "0.0.2",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-beta.1",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"email-templates": "^2.7.1",
"event-stream": "^3.3.4",
"express": "~4.14.1",
"express-session": "^1.15.6",
"flash": "^1.1.0",
"fs-extra": "^2.1.2",
"imgur": "^0.2.1",
"jade": "~1.11.0",
"jsdoc": "^3.5.1",
"load-json-file": "^3.0.0",
"mailgun-js": "^0.11.2",
"mongoose": "^4.9.1",
"morgan": "~1.7.0",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"multer-storage-imgur": "^1.0.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"request": "^2.81.0",
"request-promise-native": "^1.0.5",
"serve-favicon": "~2.3.2",
"tape": "^4.8.0"
},
"jest": {
"globals": {
"__DEV__": true,
"__DOMAIN__": "http://localhost:8089"
}
},
"devDependencies": {
"eslint-watch": "^3.1.3",
"forever": "^0.15.3",
"jest": "^22.4.3",
"lodash": "^4.17.5",
"nodemon": "^1.11.0",
"now": "^9.2.7",
"npm-run-all": "^4.1.2",
"pm2": "^2.9.3",
"standard": "^10.0.3"
}
}