-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·100 lines (100 loc) · 3.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "memorise_api",
"version": "0.1.0",
"description": "memoBool API",
"private": true,
"author": "Booli",
"main": "index.js",
"engines": {
"node": ">=10.16.1",
"npm": ">=6.9.0",
"yarn": ">=1.6.0"
},
"scripts": {
"start": "node index.js",
"dev": "cross-env DEBUG=memoRise:* nodemon --watch . index.js",
"full": "yarn lint && yarn test",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors server --recursive",
"test:watch": "yarn test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors server --recursive",
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"passport",
"redis",
"es6",
"mocha",
"REST",
"API",
"boilerplate"
],
"dependencies": {
"@vitalets/google-translate-api": "false3.0.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"connect-flash": "^0.1.1",
"connect-redis": "^3.3.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"dotenv-safe": "^6.0.0",
"express": "^4.16.3",
"express-http-context": "^1.2.3",
"express-jwt": "false5.3.1",
"express-session": "^1.15.6",
"express-validation": "^1.0.2",
"express-winston": "^2.6.0",
"helmet": "^3.13.0",
"http-status": "^1.2.0",
"ioredis": "^4.0.0",
"joi": "^13.4.0",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.10",
"method-override": "^3.0.0",
"moment": "^2.22.2",
"mongoose": "^5.2.15",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-google-oauth": "false2.0.0",
"passport-google-token": "false0.1.2",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"uuid": "^3.3.2",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-watch": "^4.0.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"supertest": "^3.1.0",
"supertest-as-promised": "^4.0.2",
"validate-commit-msg": "^2.14.0"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}