This repository was archived by the owner on Feb 3, 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
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "typescript-backend-template",
"version": "1.0.0",
"description": "",
"main": "./dist/Main.js",
"author": "rihayoru <me@yoru.icu>",
"license": "MIT",
"dependencies": {
"@google-cloud/speech": "^4.10.2",
"@prisma/client": "4.3.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"express": "^4.17.2",
"helmet": "^5.1.0",
"http": "^0.0.1-security",
"knex": "^2.0.0",
"mysql": "^2.18.1",
"socket.io": "^4.5.2",
"socket.io-client": "^4.5.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.5.5",
"util": "^0.12.4"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/Main.js",
"dev": "tsc-watch --onSuccess \"node ./dist/Main.js\"",
"lint": "eslint src --ext .ts"
},
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/jsonwebtoken": "8.5.8",
"@types/node": "18.6.1",
"@types/nodemailer": "6.4.4",
"@types/qrcode": "1.4.2",
"@types/speakeasy": "2.0.7",
"@types/superagent": "4.1.15",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-n": "15.2.4",
"git-commit-msg-linter": "4.1.3"
}
}