This repository was archived by the owner on Mar 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.38 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.38 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
81
82
83
84
85
86
87
88
{
"name": "es-database-api",
"version": "1.1.0",
"type": "module",
"description": "API server for managing projects, cards, users and digital assets with authentication and GitHub integration",
"main": "api/index.js",
"scripts": {
"start": "node api/index.js",
"dev": "node --watch api/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:migrate": "sequelize-cli db:migrate",
"db:seed": "sequelize-cli db:seed:all",
"db:reset": "sequelize-cli db:drop && sequelize-cli db:create && npm run db:migrate && npm run db:seed",
"security:audit": "npm audit --audit-level=moderate",
"prepare": "echo 'Ready to develop'"
},
"dependencies": {
"@sentry/node": "^8.0.0",
"axios": "^1.13.4",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csrf-csrf": "^3.0.8",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.5.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"multer": "^2.0.2",
"pg": "^8.14.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.6",
"sqlite3": "^5.1.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-security": "^3.0.1",
"prettier": "^3.4.2",
"sequelize-cli": "^6.6.2",
"supertest": "^7.0.0",
"vitest": "^4.0.18"
},
"overrides": {
"jws": "^4.0.0",
"tar": "^7.5.7",
"tar-fs": "^3.1.1",
"glob": "^11.1.0",
"js-yaml": "^4.1.1",
"brace-expansion": "^2.0.2",
"lodash": "^4.17.23"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ESousa97/serverdatabase.git"
},
"keywords": [
"api",
"express",
"sequelize",
"nodejs",
"rest",
"jwt",
"authentication"
],
"author": "ESousa97",
"license": "MIT",
"bugs": {
"url": "https://github.com/ESousa97/serverdatabase/issues"
},
"homepage": "https://github.com/ESousa97/serverdatabase#readme"
}