-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 991 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./src/index.ts",
"start": "tsc --build && node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.15",
"@types/http-errors": "^2.0.1",
"@types/lodash": "^4.14.191",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.11.17",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.2.2",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"json2csv": "^5.0.7",
"lodash": "^4.17.21",
"mongoose": "^6.8.3",
"node-fetch": "^3.3.0"
}
}