-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (58 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (58 loc) · 2.1 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
{
"name": "sa_2023b",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "tsc && jest --detectOpenHandles --coverage --forceExit",
"testUser": "tsc && jest --detectOpenHandles --forceExit ./src/tests/user.test.ts",
"testAuth": "tsc && jest --detectOpenHandles --forceExit ./src/tests/auth.test.ts",
"testPost": "tsc && jest --detectOpenHandles --forceExit --runInBand ./src/tests/post.test.ts",
"testFile": "tsc && jest --detectOpenHandles --forceExit --runInBand ./src/tests/file.test.ts",
"testRestApi": "tsc && jest --detectOpenHandles --forceExit ./src/tests/restAPI.test.ts",
"testGoogle": "tsc && jest --detectOpenHandles --forceExit ./src/tests/Google.test.ts",
"start": "tsc && node ./dist/src/server.js",
"dev": "nodemon ./src/server.ts",
"prod": "cp .envprod .env && tsc -p tsconfig_prod.json && pm2 restart ecosystem.config.js --env production",
"prod1":"cp .envprod .env && tsc -p tsconfig_prod.json && node ./dist/src/server.js"
},
"author": "Michal Massachi and Shay Noa Dotan",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"express": "^4.18.2",
"google-auth-library": "^9.6.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.2",
"multer": "^1.4.5-lts.1",
"@types/multer": "^1.4.11",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"@types/jest": "^29.5.11",
"@types/supertest": "^2.0.16",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"jest": "^29.7.0",
"@types/multer": "^1.4.11"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@types/supertest": "^2.0.16",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}