package.json 970 Bytes
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "name": "node-3dps-extended",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node app.js",
    "start-mon": "nodemon app.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/tomeof/node-3dps-extended.git"
  },
  "author": "Hochschule fur Technik Stuttgart",
  "license": "GPL-2.0",
  "bugs": {
    "url": "https://gitlab.com/tomeof/node-3dps-extended/issues"
  },
  "homepage": "https://gitlab.com/tomeof/node-3dps-extended#README",
  "dependencies": {
Athanasios's avatar
Athanasios committed
22
    "body-parser": "^1.19.0",
Athanasios's avatar
Athanasios committed
23
24
25
26
    "box-intersect": "^1.0.2",
    "express": "^4.17.1",
    "express-validator": "^6.4.0",
    "node-fetch": "^2.6.0",
Athanasios's avatar
Athanasios committed
27
28
    "pug": "^2.0.4",
    "uuid": "^8.2.0"
Athanasios's avatar
Athanasios committed
29
30
31
32
33
  },
  "devDependencies": {
    "nodemon": "^2.0.3"
  },
  "nodemonConfig": {
athanasios's avatar
athanasios committed
34
35
36
37
38
39
40
    "watch": [
      "app.js",
      "config.js",
      "src/",
      "routes/",
      "assets/"
    ]
Athanasios's avatar
Athanasios committed
41
  }
athanasios's avatar
athanasios committed
42
}