-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.78 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": "back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=production PORT=80 nodemon --exec babel-node -- src/index.js",
"dev": "cross-env NODE_ENV=development nodemon --exec babel-node -- src/index.js",
"updating:ui": "npm run cleaning && git clone https://[email protected]/miraliko/itechs.git && mv ./itechs/build ./src/build && rm -r -f ./itechs",
"updating:api": "npm run cleaning:api && git clone https://[email protected]/miraliko/itechs-api.git && npm run move:api",
"cleaning": "rm -r -f ./src/build && rm -r -f ./itechs",
"cleaning:api": "rm -r -f ./itechs-api ./src/config ./src/images ./src/models ./src/routes ./src/sockets ./src/utils ./src/index.html ./src/index.js",
"move:api": "mv ./itechs-api/src/* ./src/ && mv ./itechs-api/package.json ./ && rm -r -f ./itechs-api",
"git:push": "git add . && git commit -m 'api-deploy' && git push origin master"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.17.1",
"bcrypt": "^1.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cookie-session": "^2.0.0-beta.3",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"helmet": "^3.12.0",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.4",
"mongoose-auto-increment": "^5.0.1",
"mongoose-sequence": "^4.0.1",
"mongoose-unique-validator": "^1.0.6",
"multer": "^1.3.0",
"node-fetch": "^1.7.3",
"nodemailer": "^4.4.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github2": "^0.1.11",
"socket.io": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4"
}
}