-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "message-api",
"description": "Projeto da API de mensagens",
"version": "1.0.0",
"private": true,
"main": "./bin/message-api",
"repository": {
"type": "git",
"url": "https://github.com/laissonsilveira/message-api.git"
},
"author": {
"name": "Laisson R. Silveira",
"email": "[email protected]"
},
"readme": "README.md",
"license": "UNLICENSED",
"scripts": {
"dev": "NODE_ENV=development node ./bin/message-api",
"start": "NODE_ENV=production node ./bin/message-api",
"build": "./node_modules/gulp/bin/gulp.js build",
"test": "./node_modules/gulp/bin/gulp.js test",
"test-debug": "NODE_ENV=test mocha test/*.test.js --inspect-brk",
"doc": "./node_modules/gulp/bin/gulp.js doc"
},
"dependencies": {
"bluebird": "^3.5.4",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.25",
"mongoose": "^5.7.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^3.9.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"gulp": "^4.0.2",
"gulp-api-doc": "^2.2.0",
"gulp-clean": "^0.4.0",
"gulp-gzip": "^1.4.2",
"gulp-install": "^1.1.0",
"gulp-mocha": "^6.0.0",
"gulp-rename": "^1.4.0",
"gulp-tar": "^2.1.0",
"mochawesome": "^3.1.2",
"mongodb-memory-server": "^5.1.1"
}
}