-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1017 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1017 Bytes
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": "magangbackend",
"version": "1.0.0",
"description": "Backend Bootcamp Ramadhan 1442",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index",
"dev": "nodemon index"
},
"author": "Miko",
"license": "ISC",
"dependencies": {
"argon2": "^0.27.2",
"ejs": "^3.1.6",
"env-schema": "^2.1.0",
"fastify": "^3.14.2",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.3.1",
"fastify-jwt": "^2.4.0",
"fastify-multipart": "^4.0.5",
"fastify-postgres": "^3.5.0",
"fastify-static": "^4.0.1",
"fastify-swagger": "^4.7.0",
"JSONStream": "^1.3.5",
"nodemailer": "^6.6.0",
"pg": "^8.6.0",
"pg-query-stream": "^4.1.0",
"point-of-view": "^4.14.0",
"undici": "^3.3.6"
},
"devDependencies": {
"nodemon": "^2.0.7"
},
"nodemonConfig": {
"ignore": [
"*/node_modules",
".gitignore",
"package*.json"
]
},
"engines": {
"node": "15.x"
}
}