-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.63 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.63 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
{
"name": "minerva-api",
"version": "0.0.1-alpha",
"description": "The Training Management System API is a powerful tool designed to streamline and automate the process of managing training programs within an organization.",
"author": "Alexandre Lamberty <mail@alexandrelamberty.com>",
"license": "MIT",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"start:dev": "nodemon src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"migrate:up": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"seed:all": "npx sequelize-cli db:seed:all",
"seed:undo": "npx sequelize-cli db:seed:undo:all",
"docker:build": "docker build . -t alexandrelamberty/minerva-api:'${branch}'",
"docker:push": "docker push alexandrelamberty/minerva-api:$branch",
"lint:check": "eslint .",
"format:check": "prettier --check .",
"format:format": "prettier --write **/*.{js,md}",
"doc": "npx jsdoc src -r --destination docs --readme ./README.md --package ./package.json"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"jsdoc": "^4.0.2",
"nodemon": "^2.0.20",
"prettier": "^2.8.8"
},
"dependencies": {
"argon2": "^0.30.3",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.2.0",
"openai": "^3.2.1",
"sequelize": "^6.28.0",
"tedious": "^15.1.3",
"uuid": "^9.0.0",
"yup": "^1.0.2"
}
}