-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "karl-api",
"version": "0.1.0-alpha",
"description": "Official repository for the API of Karl, a management suite",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon src/app.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AmicaleCORE/Karl-API.git"
},
"keywords": [
"karl",
"rest",
"api",
"node",
"js"
],
"author": "Tom CZEKAJ | Xen0Xys",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AmicaleCORE/Karl-API/issues"
},
"homepage": "https://github.com/AmicaleCORE/Karl-API#readme",
"devDependencies": {
"eslint": "^8.38.0",
"nodemon": "^2.0.22",
"sqlite3": "^5.1.6"
},
"dependencies": {
"argon2": "^0.30.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"helmet": "^6.1.5",
"https": "^1.0.0",
"mariadb": "^3.1.1",
"mysql2": "^3.2.0",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.0"
}
}