-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nodejs_training_epam",
"version": "1.0.0",
"description": "nodejs training epam",
"scripts": {
"eslint": "eslint src/**/*.js --cache",
"build": "babel src -d dist --source-maps --copy-files --quiet",
"app": "npm run build && node dist/index.js",
"start": "nodemon --exec npm run app --quiet --silent",
"prepostgres": "docker pull postgres:10.1-alpine",
"postgres": "docker run -d --publish 5432:5432 --name postgres --rm postgres:10.1-alpine",
"postgres:stop": "docker stop postgres",
"migrate": "sequelize db:migrate && node dist/jsonToPostgres.js",
"premongodb": "docker pull mongo:3.5.13-jessie",
"mongodb": "docker run -d --publish 27017:27017 --name mongo --rm mongo:3.5.13-jessie",
"mongodb:stop": "docker stop mongo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pakhuta/siarhei.pakhuta.nodejs.git"
},
"keywords": [
"nodejs"
],
"author": "siarhei.pakhuta <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pakhuta/siarhei.pakhuta.nodejs/issues"
},
"homepage": "https://github.com/pakhuta/siarhei.pakhuta.nodejs#readme",
"dependencies": {
"eventemitter3": "2.0.3",
"express": "4.16.2",
"express-session": "1.15.6",
"glob": "7.1.2",
"jsonwebtoken": "8.1.0",
"minimist": "1.2.0",
"mongodb": "2.2.14",
"mongoose": "4.13.6",
"passport": "0.4.0",
"passport-facebook": "2.1.1",
"passport-google-oauth20": "1.0.0",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
"passport-twitter": "1.0.4",
"pg": "6.4.2",
"request": "2.83.0",
"sequelize": "4.23.0",
"sequelize-cli": "3.2.0",
"split2": "2.2.0",
"swagger": "0.7.5",
"through2": "2.0.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-env": "1.6.0",
"eslint": "4.6.1",
"eslint-config-airbnb-base": "12.0.0",
"eslint-plugin-import": "2.7.0",
"nodemon": "1.12.1"
},
"engines": {
"node": "^8.2.1",
"npm": "^5.3.0"
}
}