-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.66 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.66 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ua-api",
"description": "API web à destination des services de l'UTT Arena",
"version": "1.0.0",
"private": false,
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.15.0",
"@sentry/node": "^8.55.0",
"@slack/web-api": "^7.10.0",
"@types/base45": "^2.0.2",
"@types/ms": "^2.1.0",
"@types/multer": "^1.4.13",
"@types/qs": "^6.14.0",
"@ung/node-etupay": "^3.0.0",
"axios": "^1.12.2",
"base45": "^2.0.1",
"bcryptjs": "^2.4.3",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"helmet": "^7.2.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"logform": "^2.7.0",
"moment": "^2.30.1",
"morgan": "^1.10.1",
"ms": "^2.1.3",
"multer": "2.0.2",
"mustache": "^4.2.0",
"nanoid": "^3.3.11",
"nodemailer": "^7.0.10",
"pdfkit": "^0.15.2",
"prisma": "^6.15.0",
"qrcode": "^1.5.4",
"qs": "^6.14.0",
"rate-limiter-flexible": "^5.0.5",
"sharp": "^0.33.5",
"split": "^1.0.1",
"stripe": "^16.12.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.3.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@faker-js/faker": "^9.9.0",
"@types/bcryptjs": "^2.4.6",
"@types/chai": "^4.3.20",
"@types/chai-string": "^1.4.5",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/mocha": "^10.0.10",
"@types/morgan": "^1.9.10",
"@types/mustache": "^4.2.6",
"@types/nodemailer": "^6.4.19",
"@types/pdfkit": "^0.13.9",
"@types/qrcode": "^1.5.5",
"@types/sinon": "^17.0.4",
"@types/smtp-server": "^3.5.12",
"@types/split": "^1.0.5",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"chai": "^4.5.0",
"chai-string": "^1.6.0",
"cpy-cli": "^5.0.0",
"dbdocs": "^0.16.2",
"dotenv-cli": "^7.4.4",
"eslint": "^9.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"mocha": "^10.8.2",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"prisma-dbml-generator": "^0.12.0",
"sinon": "^18.0.1",
"smtp-server": "^3.14.0",
"supertest": "^7.1.4",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.2"
},
"scripts": {
"postinstall": "husky",
"dev": "ts-node-dev --no-notify --exit-child src/server.ts",
"fake": "ts-node tests/fake.ts",
"build": "tsc",
"postbuild": "cpy 'src/**/*.yml' build/src",
"start": "node build/src/server.js",
"lint": "eslint src/ tests/ --max-warnings 0",
"lint:fix": "eslint --fix src/ tests/ --max-warnings 0",
"test": "mocha",
"test:coverage": "nyc pnpm test",
"send:mail:discord": "node build/src/scripts/sendDiscordMails.js",
"send:mails": "node build/src/scripts/mails",
"schema:push": "prisma db push",
"test:schema:push": "dotenv -e .env.test -e .env -- prisma db push"
}
}