-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 970 Bytes
/
package.json
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
{
"type": "module",
"dependencies": {
"@minionjs/core": "^0.3.3",
"@mojojs/core": "^1.23.0",
"@mojojs/pg": "^1.1.6",
"@types/nodemailer": "^6.4.7",
"nodemailer": "^6.9.1"
},
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/js-yaml": "^4.0.3",
"@types/mime-types": "^2.1.0",
"@types/node": "^18.0.0",
"@types/nopt": "^3.0.29",
"@types/pg": "^8.6.6",
"@types/stack-utils": "^2.0.1",
"@types/tap": "^15.0.7",
"@types/tough-cookie": "^4.0.2",
"@types/ws": "^8.5.3",
"nodemon": "^2.0.20",
"tap": "^16.3.0",
"typescript": "^4.7.0"
},
"scripts": {
"build": "npx tsc --build ./",
"build:test": "npm run build && npm test",
"build:watch": "npm run build -- --watch",
"dev": "NODE_ENV=development MOJO_PG_DEBUG=1 npx nodemon lib/index.js server",
"start": "NODE_ENV=production node lib/index.js server -l http://*:8080",
"test": "tap --no-coverage test/*.js"
}
}