summaryrefslogtreecommitdiff
path: root/package.json
blob: 847be4aa8c17310123e6fd9202b00f2cd007fa3a (plain)
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
53
54
{
  "name": "gathio",
  "version": "1.3.0",
  "description": "",
  "main": "index.js",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "start": "node dist/start.js",
    "dev": "nodemon -e ts,js --watch src --exec \"pnpm run build ; pnpm run start\"",
    "test:dev": "pnpm run dev & wait-on http://localhost:3000 && cypress open --e2e --browser chrome",
    "test": "pnpm run build || true && pnpm run start & wait-on http://localhost:3000 && cypress run --e2e --browser chrome"
  },
  "engines": {
    "node": ">=16.16.0"
  },
  "keywords": [],
  "author": "",
  "license": "GPL-3.0-or-later",
  "dependencies": {
    "@sendgrid/mail": "^6.5.5",
    "cors": "^2.8.5",
    "express": "^4.18.2",
    "express-fileupload": "^1.4.1",
    "express-handlebars": "^6.0.7",
    "express-session": "^1.17.3",
    "express-validator": "^6.15.0",
    "generate-rsa-keypair": "^0.2.1",
    "ical": "^0.6.0",
    "ical-generator": "^1.15.4",
    "jimp": "^0.16.13",
    "marked": "^9.1.0",
    "moment-timezone": "^0.5.43",
    "mongoose": "^5.13.20",
    "nanoid": "^3.3.6",
    "niceware": "^3.0.0",
    "node-schedule": "^1.3.3",
    "nodemailer": "^6.9.5",
    "randomstring": "^1.3.0",
    "request": "^2.88.2",
    "sanitize-html": "^2.11.0",
    "toml": "^3.0.0",
    "wait-on": "^7.0.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.18",
    "@types/node": "^20.8.2",
    "cypress": "^13.3.0",
    "eslint": "^8.50.0",
    "nodemon": "^2.0.22",
    "prettier": "^2.8.8",
    "typescript": "5.1.6"
  }
}