-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.53 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
{
"name": "full-stack-final-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/src/server.js",
"test": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --coverage --detectOpenHandles --forceExit",
"test-prd": "tsc && cross-env NODE_ENV=production DOTENV_CONFIG_PATH='./.env.prod' jest --coverage --detectOpenHandles --forceExit",
"testAuth": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --detectOpenHandles --forceExit --runInBand ./src/tests/auth.test.ts",
"testDonation": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --detectOpenHandles --forceExit --runInBand ./src/tests/donation.test.ts",
"testRequestedDonation": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --detectOpenHandles --forceExit --runInBand ./src/tests/requested_donations.test.ts",
"testDonor": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --detectOpenHandles --forceExit --runInBand ./src/tests/donor.test.ts",
"testFile": "tsc && cross-env NODE_ENV=test DOTENV_CONFIG_PATH='./.env.test' jest --detectOpenHandles --forceExit --runInBand ./src/tests/file.test.ts",
"prod": "tsc -p tsconfig.json && cross-env NODE_ENV=production DOTENV_CONFIG_PATH=./.env.prod pm2 start ./dist/src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/swagger-ui-express": "^4.1.6",
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"google-auth-library": "^9.10.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.8.0",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"react-bootstrap": "^2.10.4",
"react-csv": "^2.2.2",
"supertest": "^7.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.12",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"cookiejar": "^2.1.4",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.3",
"typescript": "^4.9.5"
}
}