-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.79 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
{
"name": "kea-large-systems-backend",
"version": "0.0.1",
"description": "Backend system for large systems group work",
"main": "src/app.ts",
"scripts": {
"start": "node build/app.js",
"dev": "nodemon ./src/app.ts",
"test": "jest --detect-open-handles --silent",
"test-coverage": "jest --runInBand --coverage --silent",
"test-coverage-generate": "jest --silent --runInBand --coverageDirectory=coverage/jest",
"compose": "docker compose up --build --exit-code-from test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CristiPV/kea-large-systems-backend.git"
},
"keywords": [
"node",
"typescript",
"express",
"api"
],
"authors": [
"Alex Maccagnan",
"Cristian-Valentin Purcea",
"Itai Gramse",
"Astthor Arnar Bragason",
"Teodor Jonasson"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CristiPV/kea-large-systems-backend/issues"
},
"homepage": "https://github.com/CristiPV/kea-large-systems-backend#readme",
"dependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"helmet": "^5.0.2",
"moment": "^2.29.3",
"mysql2": "^2.3.3",
"passport": "^0.5.2",
"passport-microsoft": "^1.0.0",
"sequelize": "^6.19.0",
"typescript": "^4.7.2",
"ts-node": "^10.5.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express-session": "^1.17.4",
"@types/jest": "^27.4.1",
"@types/passport": "^1.0.7",
"@types/sequelize": "^4.28.11",
"@types/supertest": "^2.0.12",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^27.1.4",
"ts-node": "^10.5.0",
"typescript": "^4.7.2"
}
}