-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.48 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.48 KB
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
{
"name": "assigned-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .ts .",
"dev": "cross-env NODE_ENV=development ts-node-dev src/index.ts",
"start": "cross-env NODE_ENV=production node build/index.js",
"test": "cross-env NODE_ENV=test docker-compose -f docker-compose.test.yml up -d && jest --runInBand --forceExit --coverage && cat ./coverage/lcov.info | coveralls",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sandermoen/SubmissionBox-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sandermoen/SubmissionBox-backend/issues"
},
"homepage": "https://github.com/Sandermoen/SubmissionBox-backend#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.25",
"mongoose-unique-validator": "^2.0.3",
"redis": "^3.0.2",
"uuid": "^8.2.0",
"yup": "^0.29.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/helmet": "0.0.47",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.32",
"@types/mongoose-unique-validator": "^1.0.4",
"@types/morgan": "^1.9.1",
"@types/redis": "^2.8.25",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.0.0",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"morgan": "^1.10.0",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.3",
"ts-node-dev": "^1.0.0-pre.52",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}
}