forked from aurelienCastellarnau/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "mean-api",
"version": "1.0.0",
"description": "Express API for Mean Project",
"main": "api.js",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"cookie-parser": "^1.4.3",
"elasticsearch": "^13.0.1",
"express": "^4.15.2",
"fs": "0.0.1-security",
"get-json": "0.0.3",
"jsonwebtoken": "^7.4.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.26",
"mongoosastic": "^4.3.0",
"mongoose": "^4.9.8",
"morgan": "^1.8.1"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-server": "node ./api.js",
"build-client": "cd cli && npm install && ng build && cd ../",
"mongo_win": "net start MongoDB",
"mongo_unix": "mongod --fork",
"elastic": "cd ../elasticsearch/bin/ && elasticsearch-service.bat start",
"deploy": "npm run build-client & npm install && npm run start-server",
"deploy_win": "npm run elastic & npm run mongo_win & npm run deploy & node ./index_elastic.js",
"deploy_unix": "npm run mongo_unix & npm run deploy"
},
"author": "billau_j, castel_a, godefr_s",
"license": "ISC"
}