forked from polaris-maps/polaris-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 869 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 869 Bytes
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
{
"name": "api",
"version": "1.0.0",
"description": "Polaris Maps backend",
"main": "server.js",
"scripts": {
"test": "(timeout --signal=SIGINT 15 node server.js --port=5001; exit 0) & sleep 5s && curl -s http://localhost:5001/app/ && sleep 5s",
"run": "nodemon server.js",
"start": "nodemon server.js",
"mocha": "mocha test/*.test.js --exit"
},
"author": "Team Polaris",
"license": "GPL-3.0-or-later",
"dependencies": {
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-winston": "^4.2.0",
"mongodb": "^4.4.0",
"mongoose": "^6.4.6",
"nodemon": "^2.0.20",
"openrouteservice-js": "^0.2.0",
"winston": "^3.7.2",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"chai": "^4.3.10",
"chai-http": "^4.4.0",
"mocha": "^10.2.0"
}
}