-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.46 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.46 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
{
"name": "croissant-api",
"version": "1.0.0",
"description": "template",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"lint": "npx eslint src --ext .ts",
"lint:fix": "npx eslint src --ext .ts --fix",
"format": "npx prettier --write src",
"format:check": "npx prettier --check src",
"dev": "npx ts-node-dev src/index.ts",
"build": "npx tsc",
"test": "npx tsc && npx jest --detectOpenHandles --forceExit",
"test-watch": "npx tsc && npx jest --watch --detectOpenHandles --forceExit",
"migrate:logs": "npx ts-node src/database/migrate-logs.ts"
},
"dependencies": {
"@peculiar/webcrypto": "^1.5.0",
"@simplewebauthn/server": "^13.1.2",
"bcryptjs": "^3.0.2",
"commander": "^13.1.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"croissant-api": "file:",
"crypto": "^1.0.1",
"diacritics": "^1.3.0",
"dotenv": "^16.5.0",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-rate-limit": "^8.1.0",
"express-session": "^1.18.2",
"express-static-gzip": "^3.0.0",
"inversify": "^6.2.2",
"inversify-express-utils": "^6.5.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mysql": "^2.18.1",
"node-fetch": "^2.7.0",
"nodemailer": "^7.0.7",
"passport": "^0.7.0",
"passport-steam": "^1.0.18",
"qrcode": "^1.5.4",
"reflect-metadata": "^0.2.2",
"sharp": "^0.34.1",
"socket.io": "^4.8.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"stripe": "^18.3.0",
"time2fa": "^1.4.2",
"uuid": "^11.1.0",
"yup": "^1.6.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.17",
"@types/csv-parse": "^1.2.5",
"@types/diacritics": "^1.3.3",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^14.18.63",
"@types/node-fetch": "^2.6.12",
"@types/nodemailer": "^6.4.17",
"@types/passport": "^1.0.17",
"@types/passport-steam": "^1.0.6",
"@types/qrcode": "^1.5.5",
"@types/sqlite3": "^5.1.0",
"@types/yup": "^0.32.0",
"eslint": "^9.25.0",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-node": "^10.9.2",
"typescript": "5.3",
"typescript-eslint": "^8.30.1"
},
"author": "fox3000foxy",
"license": "MIT"
}