-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "confirma-me",
"version": "0.0.1",
"description": "Gestor de eventos",
"main": "app.js",
"repository": {
"url": "[email protected]:MonteriaJS/confirma-me.git",
"type": "git"
},
"author": "John Baquero Celis <[email protected]>",
"contributors": [
{
"name": "Carlos A. Escobar",
"email": "[email protected]"
}
],
"scripts": {
"build": "yarn prepare && babel src --out-dir bin",
"prepare": "rm -f -R bin && mkdir bin && cp -R src/views bin/views",
"run-dev": "NODE_ENV=development babel-watch src/app.js",
"run-prod": "NODE_ENV=production node bin/app.js"
},
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-session": "^1.14.1",
"method-override": "^2.3.6",
"mongoose": "^4.6.5",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"pug": "^2.0.0-beta6",
"socket.io": "^1.5.1"
},
"devDependencies": {
"app-root-dir": "^1.0.2",
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-watch": "^2.0.3",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.0",
"gulp-refresh": "^1.1.0",
"gulp-sass": "^2.3.2",
"materialize-css": "^0.97.7"
}
}