-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.97 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
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
{
"name": "parelpracht-server",
"version": "0.1.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"debug": "npm run clean && npm run tsoa && tsc && concurrently \"npm:build:dev\" \"npm:start:debug\" \"npm:tsoa:dev\"",
"dev": "npm run clean && npm run tsoa && tsc && concurrently \"npm:build:dev\" \"npm:start:dev\" \"npm:tsoa:dev\"",
"start:dev": "nodemon dist/index.js",
"start:debug": "nodemon --inspect dist/index.js",
"build:dev": "tsc --watch --preserveWatchOutput",
"tsoa:dev": "chokidar \"src/controllers/**/*.ts\" \"src/models/**/*.ts\" -c \"tsoa routes && tsoa spec\"",
"tsoa": "tsoa routes && tsoa spec",
"build": "npm run clean && tsc",
"clean": "rimraf \"dist/\" \"tsconfig.tsbuildinfo\"",
"gen-client": "nswag openapi2tsclient /input:src/public/swagger.json /output:../parelpracht-client/src/clients/server.generated.ts /ServiceHost:.",
"db:diagram": "typeorm-uml ormconfig.json",
"db:validate": "node dist/dbvalidator/validate.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "The 39th board of Study Association GEWIS",
"dependencies": {
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"connect-typeorm": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.2",
"ldapjs": "^3.0.5",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"mime": "^3.0.0",
"multer": "^1.4.4",
"mysql2": "^3.6.1",
"node-cron": "^3.0.2",
"node-latex": "^3.1.0",
"nodemailer": "^6.9.5",
"passport": "^0.6.0",
"passport-ldapauth": "^3.0.1",
"passport-local": "^1.0.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"strong-error-handler": "^5.0.1",
"swagger-ui-express": "^5.0.0",
"tsoa": "^5.1.1",
"typeorm": "^0.3.17",
"uuid": "^9.0.1",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "4.17.18",
"@types/express-session": "^1.17.8",
"@types/jsonwebtoken": "^9.0.3",
"@types/lodash": "^4.14.199",
"@types/method-override": "0.0.33",
"@types/mime": "^3.0.2",
"@types/multer": "^1.4.8",
"@types/node": "^20.8.2",
"@types/node-cron": "^3.0.9",
"@types/nodemailer": "^6.4.11",
"@types/passport": "^1.0.13",
"@types/passport-local": "^1.0.36",
"@types/rimraf": "^4.0.5",
"@types/swagger-ui-express": "^4.1.4",
"@types/uuid": "^9.0.4",
"@types/validator": "^13.11.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
}
}