-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "trainingcenter-backend",
"version": "0.0.1",
"main": "index.js",
"author": "VATSIM Germany <webmaster@vatger,de>",
"license": "UNLICENSED",
"description": "",
"repository": {
"type": "git",
"url": "[email protected]:trainingcenter/trainingcenter-backend.git"
},
"scripts": {
"dev": "tsc && node ./dist/Application.js",
"build": "tsc",
"run": "node ./dist/Application.js",
"seq": "npx sequelize-cli --options-path=db/config/options.js",
"prettier:check": "npx prettier --check **/*.{ts,js}",
"prettier:write": "npx prettier --write .",
"app-key:generate": "node misc/GenerateAppKey.js"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.14",
"@types/express-fileupload": "^1.4.1",
"@types/node": "^18.11.9",
"@types/node-cron": "^3.0.6",
"@types/sequelize": "^4.28.14",
"@types/ua-parser-js": "^0.7.36",
"@types/uuid": "^8.3.4",
"axios": "^1.1.3",
"body-parser": "^1.20.1",
"cookie-parser": "^1.4.6",
"cron-parser": "^4.7.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"mysql2": "^2.3.3",
"node-cron": "^3.0.2",
"sequelize": "^6.25.5",
"sequelize-typescript": "^2.1.5",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"cors": "^2.8.5",
"prettier": "^2.7.1",
"sequelize-cli": "^6.5.2",
"typescript": "^4.8.4"
}
}