forked from amostin/omgServer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "omgserver",
"version": "0.0.1",
"description": "Oh My Glucose platform server",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/louisBrochet/omgServer.git"
},
"author": "Louis Brochet",
"license": "MIT",
"bugs": {
"url": "https://github.com/louisBrochet/omgServer/issues"
},
"homepage": "https://github.com/louisBrochet/omgServer#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-mysql-session": "^2.1.5",
"express-session": "^1.17.1",
"fast-csv": "^4.3.6",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"sequelize": "^6.5.0",
"serve-static": "^1.14.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"sequelize-cli": "^6.4.1"
}
}