-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.75 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
{
"name": "webclass-assignments",
"version": "1.0.0",
"description": "Web Class Assignments",
"homepage": "https://github.com/mayakleiin/WebClass-Assignments#readme",
"bugs": {
"url": "https://github.com/mayakleiin/WebClass-Assignments/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayakleiin/WebClass-Assignments.git"
},
"license": "ISC",
"author": "Maya Klein, Noa Aharon",
"type": "commonjs",
"main": "app.js",
"scripts": {
"start": "tsc && node ./dist/src/app.js",
"dev": "nodemon ./src/app.ts",
"test": "tsc && jest --detectOpenHandles --forceExit --coverage --runInBand",
"testAuth": "tsc && jest --detectOpenHandles --forceExit auth.test.ts",
"testPost": "tsc && jest --detectOpenHandles --forceExit posts.test.ts",
"testComment": "tsc && jest --detectOpenHandles --forceExit comments.test.ts ",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/supertest": "^6.0.2",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mongoos": "^0.0.1-security",
"mongoose": "^8.8.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/express": "^4.17.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}