-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1010 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1010 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
33
34
35
36
{
"name": "tix",
"version": "1.2.10",
"description": "Simple email-based ticketing system",
"main": "src/tix.js",
"scripts": {
"prepare": "node -e \"const{execSync}=require('child_process');try{execSync('git config core.hooksPath .githooks')}catch(e){}\"",
"start": "node src/tix.js",
"dev": "nodemon src/tix.js",
"gmail-setup": "node scripts/gmail-setup.js",
"gmail-test": "node scripts/gmail-test.js"
},
"dependencies": {
"archiver": "^7.0.1",
"cookie-parser": "^1.4.6",
"dotenv": "^17.3.1",
"ejs": "^3.1.10",
"express": "^4.18.3",
"express-rate-limit": "^8.3.2",
"form-data": "^4.0.0",
"googleapis": "^171.4.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mailgun.js": "^10.2.1",
"mailparser": "^3.7.1",
"multer": "^2.0.0",
"nodemailer": "^8.0.1",
"sanitize-html": "^2.12.1",
"smtp-server": "^3.13.0",
"sql.js": "^1.12.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}