-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "farming-product-REST-api",
"version": "1.0.0",
"description": "Farming Product REST API",
"main": "dist/app.js",
"author": "Avom Brice",
"license": "ISC",
"scripts": {
"start": "node dist/app.js",
"dev": "nodemon ./app.ts",
"build": "tsc -p tsconfig.json",
"db:migrate": "ts-node scripts/run-migrations.ts",
"db:seed": "ts-node scripts/seed-db.ts",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.{js,ts,tsx,json,md}\"",
"lint": "eslint \"src/**/*.{js,ts}\" --max-warnings=0"
},
"vitest": {
"test": "tests/**/*.test.ts",
"environment": "node"
},
"dependencies": {
"@faker-js/faker": "^9.5.1",
"@sequelize/postgres": "^7.0.0-alpha.43",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "4",
"express-rate-limit": "^7.2.0",
"google-auth-library": "^9.14.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.7.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"umzug": "^3.8.2",
"uuid": "^9.0.1",
"zod": "^4.0.5"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^22.10.2",
"@types/nodemailer": "^6.4.7",
"@types/sequelize": "^4.28.20",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.3",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.31.0",
"nodemon": "^3.1.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"vitest": "^3.2.4"
}
}