-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1001 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
29
30
31
32
33
34
35
{
"name": "college-clubs-backend",
"version": "1.0.0",
"description": "This is a partial implementation of the API for our final project for Diseño de Sistemas. This repo contains the code of the Express API that will expose certain endpoints notably to get access to our system's main entities.",
"main": "src/app.js",
"private": true,
"scripts": {
"start": "node ./src/app.js",
"dev": "nodemon npm start",
"lint:errors-only": "eslint src --quiet",
"lint": "eslint src",
"init": "node ./init"
},
"engines": {
"node": ">=12.0.0"
},
"license": "MIT",
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-greencoast": "0.0.2",
"nodemon": "^2.0.7"
},
"dependencies": {
"@greencoast/logger": "^1.0.1",
"@keyv/sqlite": "^2.0.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"joi": "^17.4.0",
"keyv": "^4.0.3",
"on-finished": "^2.3.0",
"uuid": "^8.3.2"
}
}