-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.69 KB
/
package.json
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
{
"name": "ada",
"version": "1.1.0",
"description": "Automatic Documents Administration",
"main": "build/app.js",
"repository": "https://github.com/theohemmer/ada",
"scripts": {
"build": "tsc",
"start": "node ./build/server.js",
"seed": "node ./build/seed_data.js",
"buildMail": "mkdir -p ./mails/build/ && mjml ./mails/*.mjml -o ./mails/build/ --config.minify && node ./renameHtmlToEjs.js",
"test": "jest --coverage"
},
"author": "Théo HEMMER",
"license": "GPLv3",
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"media-typer": "^1.1.0",
"mjml": "^4.13.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.3.3",
"nodemailer": "^6.8.0",
"pdf-lib": "^1.17.1",
"pdf-watermark": "^1.0.3",
"sequelize": "^6.28.2",
"sequelize-cli": "^6.5.2",
"sequelize-typescript": "^2.1.5",
"uuid": "^9.0.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.1",
"@types/express": "^4.17.14",
"@types/express-session": "^1.17.5",
"@types/jest": "^29.4.0",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.6",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"jest": "^29.4.2",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}