-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "electrics01-website-backend",
"version": "1.0.0",
"private": true,
"main": "index.ts",
"scripts": {
"dev": "ts-node-dev -r dotenv/config --respawn --transpile-only index.ts",
"prod": "ts-node -r dotenv/config index.ts",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --fix ./",
"lint-no-fix": "eslint --ext .js,.ts --ignore-path .gitignore ./"
},
"repository": "https://github.com/ElectricS01/ElectricS01-Website-Backend.git",
"author": "ElectricS01 <103579308+ElectricS01@users.noreply.github.com>",
"dependencies": {
"@simplewebauthn/server": "^13.2.2",
"argon2": "^0.40.3",
"axios": "^1.13.4",
"crypto-random-string": "^3.3.1",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"mariadb": "^3.4.5",
"multer": "^1.4.5-lts.2",
"mysql2": "^3.16.3",
"nodemailer": "^6.10.1",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"ws": "^8.19.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^1.8.1",
"@types/express": "^4.17.25",
"@types/multer": "^1.4.13",
"@types/nodemailer": "^6.4.22",
"@types/qrcode": "^1.5.6",
"@types/sequelize": "^4.28.20",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"sequelize-cli": "^6.6.5",
"ts-node-dev": "^2.0.0"
}
}