-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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": "kartikontrakulhadd-api",
"version": "1.0.0",
"description": "The API for KartiKontraKulhadd system",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon ./src/index.ts",
"start": "node ./dist/src/index.js",
"check": "npm-check -u -E",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomoRazor/kartikontrakulhadd-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MomoRazor/kartikontrakulhadd-api/issues"
},
"homepage": "https://github.com/MomoRazor/kartikontrakulhadd-api#readme",
"dependencies": {
"@sendgrid/mail": "7.7.0",
"axios": "1.5.1",
"cors": "2.8.5",
"dotenv": "16.3.1",
"express": "4.18.2",
"jsonwebtoken": "9.0.2",
"luxon": "3.4.3",
"nodemon": "2.0.22",
"mongoose": "7.5.3",
"morgan": "1.10.0"
},
"devDependencies": {
"@types/cors": "2.8.14",
"@types/express": "4.17.18",
"@types/jest": "29.5.5",
"@types/jsonwebtoken": "9.0.3",
"@types/luxon": "3.3.2",
"@types/morgan": "1.9.6",
"@types/node": "20.8.0",
"npm-check": "6.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}