forked from vatger/moodle-course-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 804 Bytes
/
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
{
"name": "moodle-course-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "VATSIM Germany <[email protected]>",
"license": "GPL3",
"repository": {
"type": "git",
"url": "https://github.com/vatger/moodle-course-api"
},
"scripts": {
"start:dev": "tsc && node ./index.js",
"prettier:check": "npx prettier --check **/*.{ts,js}",
"prettier:write": "npx prettier --write .",
"build": "tsc"
},
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/sequelize": "^4.28.14",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql2": "^2.3.3",
"sequelize": "^6.25.6"
}
}