-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 914 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
{
"name": "@codekitty/code-kittty-api",
"version": "1.0.0",
"description": "Code Kitty API",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Chamod, Safnaj, Shreya",
"license": "ISC",
"dependencies": {
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-status": "^1.5.0",
"mongodb": "^4.1.0",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"prettier": "^2.4.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"nodemon": "^2.0.15"
}
}