-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.77 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": "digit-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/index.js",
"test": "NODE_ENV=test jest --runInBand --watchAll",
"lint": "eslint app migrations",
"db": "docker-compose run --rm db psql -U digit -h db digit_testing",
"db:test": "docker-compose -f docker-compose-test.yaml run --rm dbtest psql -U digit -h dbtest digit_testing"
},
"author": "niemisami",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DigitKoodit/digit-backend"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.18.3",
"cuid": "^2.1.4",
"debug": "^4.2.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"express-validator": "^6.6.1",
"helmet": "^3.23.3",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.20",
"mkdirp": "^0.5.5",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"multer": "^1.4.1",
"node-fetch": "^2.6.1",
"nodemailer": "^6.4.14",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pbkdf2-password-hash": "^2.0.0",
"pg-monitor": "^1.4.1",
"pg-promise": "^10.7.2",
"serve-favicon": "^2.5.0",
"umzug": "^2.3.0",
"url-template": "^2.0.8"
},
"devDependencies": {
"dotenv": "^8.1.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.2",
"jest": "^24.9.0",
"lolex": "^5.1.1",
"rimraf": "^3.0.2",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"node_modules"
]
}
}