This repository has been archived by the owner on Oct 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "depackt-api",
"version": "1.0.0",
"description": "Depackt Web API",
"main": "index.js",
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"it"
]
},
"scripts": {
"standard": "standard --parser babel-eslint",
"start": "babel-node ./index.js",
"test": "mocha --compilers js:babel-core/register"
},
"babel": {
"plugins": [
"lodash",
"add-module-exports"
],
"presets": [
"latest"
]
},
"author": "Augustin Godiscal <hello@depackt.be>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-latest": "^6.24.1",
"esdoc": "^0.5.2",
"mocha": "^3.2.0",
"should": "^11.2.0",
"should-sinon": "0.0.5",
"sinon": "^1.17.7"
},
"dependencies": {
"async": "^2.1.4",
"bcrypt": "^1.0.2",
"body-parser": "^1.16.0",
"chai": "^3.5.0",
"compression": "^1.6.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"crypto-promise": "^2.0.0",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"escape-regexp": "0.0.1",
"express": "^4.15.0",
"express-session": "^1.15.0",
"helmet": "^3.4.1",
"lodash": "^4.17.4",
"memory-cache": "^0.2.0",
"mongoosastic": "^4.3.0",
"mongoose": "^4.10.6",
"mongoose-validator": "^1.2.5",
"morgan": "^1.8.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pug": "^2.0.0-beta11",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"require-dir": "^0.3.1",
"rsvp": "^3.3.3",
"slug": "^0.9.1",
"winston": "^2.3.1"
}
}