-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
118 lines (118 loc) · 4.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "sudosos-back-end",
"version": "0.1.0",
"description": "Back-end API and database management for SudoSOS.",
"main": "out/index.js",
"scripts": {
"build": "tsc",
"watch": "nodemon --watch \"src/**\" --ext \"ts,json\" --exec \"ts-node src/index.ts",
"cron": "nodemon --watch \"src/**\" --ext \"ts,json\" --exec \"ts-node src/cron.ts",
"serve": "node out/src/index.js",
"schema": "ts-node src/database/schema.ts",
"seed": "ts-node src/database/seed.ts",
"swagger": "ts-node src/start/swagger.ts",
"migrate": "ts-node src/database/migrate.ts",
"swagger:validate": "ts-node src/start/swagger.ts && swagger-cli validate ./out/swagger.json",
"test": "mocha -r ts-node/register --parallel --timeout 50000 --require ./test/setup.ts 'test/**/*.ts' --exit",
"test-ci": "npm run schema && mocha -r ts-node/register --timeout 50000 --require ./test/setup.ts 'test/**/*.ts' --exit",
"test-ci-migrate": "npm run migrate && mocha -r ts-node/register --timeout 50000 --require ./test/setup.ts 'test/**/*.ts' --exit",
"test-file": "mocha -r ts-node/register --timeout 10000 --require ./test/setup.ts",
"coverage": "nyc npm run test",
"coverage-ci": "nyc npm run test-ci",
"lint": "eslint package.json src test --ext .js --ext .ts",
"lint-fix": "npm run lint -- --fix",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"cli": "ts-node ./src/gewis/service/cli-service.ts",
"predocs:dev": "typedoc",
"typedoc": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "NODE_OPTIONS=--max-old-space-size=12288 vitepress build docs --mode production",
"docs:preview": "vitepress preview docs"
},
"author": "",
"license": "AGPL-3.0-or-later",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"commander": "^12.1.0",
"dinero.js": "^1.9.1",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-fileupload": "^1.5.1",
"express-jsdoc-swagger": "^1.8.0",
"gewisdb-ts-client": "github:GEWIS/gewisdb-ts-client#26575e8",
"jsonwebtoken": "^9.0.2",
"ldap-escape": "^2.0.6",
"ldapts": "^7.2.1",
"log4js": "^6.9.1",
"mime-types": "^2.1.35",
"mysql2": "^3.11.4",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.16",
"pdf-generator-client": "github:GEWIS/pdf-generator#04e040b",
"reflect-metadata": "^0.2.2",
"sqlite3": "^5.1.7",
"stripe": "^16.12.0",
"swagger-model-validator": "^3.0.21",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"vitepress-theme-openapi": "^0.0.3-alpha.30"
},
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-sorted": "^0.2.0",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/dinero.js": "^1.9.4",
"@types/express": "^4.17.21",
"@types/express-fileupload": "^1.5.1",
"@types/jsonwebtoken": "^9.0.7",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.16",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@types/swagger-ui-express": "^4.1.7",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"chai-sorted": "^0.2.0",
"chai-swag": "^0.1.9",
"deep-equal-in-any-order": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-chai-expect": "^3.1.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-github-commit-hash": "^1.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.31.0",
"jsonc-eslint-parser": "^2.4.0",
"mocha": "^10.8.2",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"node-gyp": "^10.2.0",
"node-pre-gyp": "^0.17.0",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"sinon": "^18.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typedoc-plugin-merge-modules": "^6.0.3",
"typedoc-vitepress-theme": "^1.0.1",
"typescript": "^5.6.3",
"vitepress": "^1.5.0"
}
}