-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.13 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
{
"name": "michal-team-projekt-3",
"version": "0.1.0",
"private": true,
"main": "src/server.js",
"engines": {
"node": ">=16"
},
"type": "module",
"scripts": {
"start": "node .",
"dev": "cross-env NODE_ENV=development nodemon .",
"test": "cross-env NODE_ENV=test jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"postinstall": "husky install",
"prepare": "husky install",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodersCamp2021/michal-team-projekt-3.git"
},
"bugs": {
"url": "https://github.com/CodersCamp2021/michal-team-projekt-3/issues"
},
"homepage": "https://github.com/CodersCamp2021/michal-team-projekt-3#readme",
"dependencies": {
"axios": "^0.26.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"flat": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.2.3",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@faker-js/faker": "^5.5.3",
"@types/jest": "^27.4.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"mongodb-memory-server": "^8.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "16"
}
}
]
]
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md}": "prettier --write"
}
}