-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (37 loc) · 908 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
{
"name": "covidapi",
"version": "1.0.0",
"description": "Covid API For India",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.ts",
"postinstall": "tsc -p ./tsconfig.json",
"start": "cross-env NODE_ENV=production node dist/index.js"
},
"author": "vakharia_heet",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsdom": "^16.2.13",
"@types/swagger-ui-express": "^4.1.3",
"axios": "^0.24.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsdom": "^18.0.0",
"moment": "^2.29.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.2",
"node-cache": "^5.1.2",
"swagger-ui-express": "^4.3.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"@types/node": "^17.0.29",
"cross-env": "^7.0.3"
},
"devDependencies": {
"nodemon": "^2.0.14"
}
}