-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "tangong-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"lint": "node_modules/.bin/esw src",
"dev": "nodemon -w src --exec \"babel-node src/server.js --presets es2015\"",
"build": "./node_modules/.bin/babel src -s -D -d dist --presets es2015",
"start": "node dist/server.js",
"prestart": "npm run -s build"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^1.2.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.12.4",
"cloudinary": "^1.2.1",
"cookie-parser": "^1.3.5",
"express": "^4.12.4",
"express-session": "^1.11.3",
"formidable": "^1.0.17",
"jsonwebtoken": "^5.0.1",
"mongoose": "^4.0.6",
"morgan": "^1.5.3",
"multer": "^0.1.8",
"ng-file-upload": "^5.0.4",
"nodemailer": "^1.3.4",
"passport": "^0.2.2",
"passport-facebook": "^2.0.0",
"passport-local": "^1.0.0",
"quickthumb": "0.0.11",
"request": "^2.58.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^3.7.1",
"eslint-plugin-import": "1.6.1",
"eslint-watch": "2.1.11",
"nodemon": "^1.11.0"
}
}