-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.63 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": "cpf-validate",
"description": "Projeto em Node.js/AngularJS com um end-point de validação de CPF",
"version": "1.0.0",
"private": true,
"main": "./bin/cpf-validate",
"repository": {
"type": "git",
"url": "https://github.com/laissonsilveira/cpf-validate.git"
},
"author": {
"name": "Laisson R. Silveira",
"email": "[email protected]"
},
"readme": "README.md",
"license": "UNLICENSED",
"scripts": {
"dev": "NODE_ENV=development node ./bin/cpf-validate",
"start": "NODE_ENV=production node ./bin/cpf-validate",
"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.7.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.27",
"mongoose": "^5.7.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^3.10.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.2.11"
}
}