-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 892 Bytes
/
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
{
"name": "SkillSharee",
"version": "1.0.0",
"description": "simple social API network with NodeJS , MongoDB",
"main": "models/index.js",
"scripts": {
"start": "nodemon models/index.js --exec babel-node --presets es2015,stage-2",
"build": "babel lib -d dist",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"author": "Mohammad Sharifi <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.3.13",
"mocha": "^2.3.4",
"nodemon": "^1.8.1"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-restify-mongoose": "^4.0.2",
"mongoose": "^4.5.3",
"passport": "^0.3.2",
"passport-http": "^0.3.0"
}
}