-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "website-backend",
"version": "0.0.0",
"license": "UNLICENSED",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && yarn transpile",
"transpile": "tsc",
"start": "./node_modules/pm2/bin/pm2-runtime dist/index.js",
"watch": "tsc-watch --noClear -p tsconfig.json --onSuccess 'node dist/index.js'",
"prettier": "prettier --write package.json tsconfig.json src/**/*.ts views/*.pug"
},
"engines": {
"node": "^16.14.1"
},
"prisma": {
"schema": "database/schema.prisma"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.81.0",
"@hapi/boom": "^9.1.3",
"@koa/cors": "^3.3.0",
"@mailchimp/mailchimp_marketing": "^3.0.75",
"@prisma/client": "^3.11.1",
"@sentry/node": "^6.11.0",
"@sentry/tracing": "^6.11.0",
"@types/koa": "^2.13.4",
"@types/koa-compress": "^4.0.3",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/minio": "^7.0.9",
"@types/node": "^16.4.13",
"@types/pug": "^2.0.5",
"@types/sanitize-html": "^2.6.2",
"aws-sdk": "^2.1125.0",
"axios": "^0.26.0",
"bcryptjs": "^2.4.3",
"bech32": "^2.0.0",
"discord.js": "^13.7.0",
"dotenv": "^10.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-compress": "^5.1.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"node-mailjet": "^3.3.13",
"nodemailer": "^6.7.4",
"pm2": "^5.1.1",
"prisma": "^3.11.1",
"pug": "^3.0.2",
"sanitize-html": "^2.7.0",
"sharp": "^0.30.3",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@prettier/plugin-pug": "^1.16.3",
"@types/bcryptjs": "^2.4.2",
"@types/node-mailjet": "^3.3.8",
"prettier": "^2.3.2",
"tsc-watch": "^4.4.0"
}
}