This repository has been archived by the owner on Sep 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2 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
{
"name": "Server3",
"version": "2.0.0",
"main": "src/index.ts",
"repository": "https://github.com/Viktoriaschule/Server.git",
"author": "Jan-Luca D.",
"license": "GPL-3.0",
"private": false,
"engineStrict": true,
"engines": {
"node": ">=10.16"
},
"scripts": {
"test": "./node_modules/.bin/jest",
"start": "./node_modules/.bin/ts-node src/index.ts",
"db": "./node_modules/.bin/ts-node src/utils/database.ts",
"sp": "./node_modules/.bin/ts-node src/substitution_plan/sp_download.ts",
"tt": "./node_modules/.bin/ts-node src/timetable/tt_download.ts",
"cafetoria": "./node_modules/.bin/ts-node src/cafetoria/cafetoria_download.ts",
"calendar": "./node_modules/.bin/ts-node src/calendar/calendar_download.ts",
"teachers": "./node_modules/.bin/ts-node src/teachers/teachers_download.ts",
"subjects": "./node_modules/.bin/ts-node src/subjects/subjects_download.ts",
"aixformation": "./node_modules/.bin/ts-node src/aixformation/axf_download.ts"
},
"dependencies": {
"@types/body-parser": "^1.17.1",
"@types/sharp": "^0.24.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"entities": "^2.0.0",
"express": "^4.17.1",
"firebase-admin": "^8.7.0",
"form-data": "^3.0.0",
"got": "^10.6.0",
"mysql": "^2.17.1",
"node-html-parser": "^1.1.16",
"nodemailer": "^6.3.1",
"pdf-table-extractor": "^1.0.3",
"request": "^2.88.0",
"sharp": "^0.25.1",
"sqlstring": "^2.3.1",
"tough-cookie": "^3.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/entities": "^1.1.0",
"@types/express": "^4.17.1",
"@types/form-data": "^2.5.0",
"@types/got": "^9.6.7",
"@types/jest": "^25.1.4",
"@types/mysql": "^2.15.8",
"@types/node": "^13.9.2",
"@types/request": "^2.48.3",
"@types/sqlstring": "^2.2.1",
"@types/supertest": "^2.0.8",
"jest": "^25.1.0",
"superagent": "^5.1.0",
"supertest": "^4.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.3"
}
}