-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "webgus-backend-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "nodemon ./routes/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testMatch": [
"**/tests/**/*.test.js"
]
},
"dependencies": {
"axios": "^1.11.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"marked": "^17.0.1",
"mongodb": "^6.18.0",
"morgan": "~1.9.1",
"pg": "^8.16.3",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"jest": "^30.2.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.4"
},
"description": "Backend REST API for WebGIS applications providing feature-linked tabular data",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nils-gb156/webgis-backend-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nils-gb156/webgis-backend-api/issues"
},
"homepage": "https://github.com/nils-gb156/webgis-backend-api#readme"
}