-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 981 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
36
37
38
39
40
41
42
43
44
{
"name": "esusu-api",
"version": "1.0.0",
"description": "An api for an esusu group. As a test for a new role",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"start": "node index.js"
},
"keywords": [
"node",
"test",
"api",
"rest"
],
"engines": {
"yarn": ">=1.0.0",
"node": ">=12.0.0"
},
"author": "T-stark",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^14.3.0",
"express": "^4.17.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-check-expiration": "^1.0.5",
"mongoose": "^6.1.8",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"nodemon": "^2.0.15",
"pino": "^7.6.4",
"pino-pretty": "^7.5.0",
"prettier": "^2.5.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node-cron": "^3.0.1"
}
}