-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1 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
{
"name": "@outpost_platform/api_service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"test": "jest",
"test-watch": "jest --watchAll --detectOpenHandles",
"prepare-collection": "node utils/prepare-collection",
"prepare-indices": "node utils/prepare-indices",
"dummy-data": "node utils/dummy-data"
},
"test": "exit 0",
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-force-ssl": "^0.3.2",
"express-rate-limit": "^7.2.0",
"haversine": "^1.1.1",
"heroku-ssl-redirect": "0.1.1",
"isomorphic-unfetch": "^4.0.2",
"mongodb": "^6.5.0",
"morgan": "^1.10.0",
"rrule": "^2.8.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.13.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.0"
}
}