-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.93 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
{
"name": "buddy4life",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "tsc && jest --detectOpenHandles --forceExit",
"testAuth": "tsc && jest --detectOpenHandles --forceExit ./src/tests/auth.test.ts",
"testPost": "tsc && jest --detectOpenHandles --forceExit ./src/tests/post.test.ts",
"testUser": "tsc && jest --detectOpenHandles --forceExit ./src/tests/user.test.ts",
"testComment": "tsc && jest --detectOpenHandles --forceExit ./src/tests/comment.test.ts",
"start": "tsc && node ./dist/src/server.js",
"lint": "eslint . --ext .ts",
"dev": "nodemon ./src/server.ts",
"prod": "tsc -p tsconfig_prod.json && pm2 restart ecosystem.config.js --env production"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express-validator": "^3.0.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"google-auth-library": "^9.6.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.1.2",
"multer": "^1.4.5-lts.1",
"openssl": "^2.0.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"cors": "^2.8.5",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.5",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}