-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 985 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
39
40
{
"name": "yellowjobs-fetcher",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server.js",
"dev": "nodemon",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/catoverse/yellowjobs-fetcher.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/catoverse/yellowjobs-fetcher/issues"
},
"homepage": "https://github.com/catoverse/yellowjobs-fetcher#readme",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csv": "^5.5.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"static-tweets": "0.2.7",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.1.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"jest": "^27.0.6",
"nodemon": "^2.0.7",
"prettier": "^2.3.0"
}
}