-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "api-e-man",
"version": "1.0.0",
"description": "API for Events Manager application.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node_modules/.bin/concurrently --kill-others \"npm run server:run:dev\" \"cd client && ng serve --progress false\"",
"serve:client": "cd client && ng serve",
"server:run": "node app.js",
"server:run:dev": "nodemon app.js",
"build:frontend": "rm -rf ./dist && mkdir ./dist && cd ./client && ng build --prod && cp -a ./dist/eman/. ../dist && cd ../"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmadBinAbid/e-man.git"
},
"author": "Emad Bin Abid",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmadBinAbid/e-man/issues"
},
"homepage": "https://github.com/EmadBinAbid/e-man#readme",
"dependencies": {
"concurrently": "^3.6.1",
"cors": "^2.8.4",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.7.5",
"multer": "^1.3.1",
"nodemon": "^1.18.3"
}
}