-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
90 lines (90 loc) · 2.77 KB
/
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "guild",
"private": true,
"scripts": {
"build": "gulp && ls -lah dist",
"start": "ts-node --transpile-only ./server",
"start-dev": "ts-node-dev --respawn ./server",
"reset-db": "node ./server/reset_db",
"pretty-fix": "prettier --write \"{server,sql,test}/**/*.js\"",
"pm2-soft": "pm2 reload ecosystem.config.js --env production --update-env",
"pm2-hard": "pm2 kill && pm2 start ecosystem.config.js --env production --update-env"
},
"main": "server/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/danneu/guild"
},
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.345.0",
"@aws-sdk/client-ses": "^3.344.0",
"@koa/router": "^12.0.0",
"autolinker": "1.6.0",
"bcryptjs": "2.4.3",
"better-assert": "1.0.2",
"create-error": "^0.3.1",
"debug": "3.1.0",
"discord.js": "^11.5.1",
"dotenv": "^4.0.0",
"form-data": "^2.1.4",
"gm": "^1.23.1",
"interval-cache": "0.0.1",
"knex": "^1.0.0",
"koa": "2.4.1",
"koa-better-static": "^1.0.5",
"koa-body": "^6.0.1",
"koa-bouncer": "^6.0.0",
"koa-compress": "^2.0.0",
"koa-conditional-get": "2.0.0",
"koa-convert": "^1.2.0",
"koa-etag": "3.0.0",
"koa-logger": "3.1.0",
"koa-nunjucks-render": "2.0.1",
"koa-send": "4.1.0",
"koa-static": "3.0.0",
"lodash": "^4.17.15",
"node-fetch": "^1.6.3",
"nodemailer": "4.0.1",
"nodemailer-ses-transport": "1.5.1",
"nunjucks": "^3.2.0",
"pg": "^8.0.0",
"pg-extra": "^3.0.0",
"postgres-array": "1.0.2",
"promise.map": "0.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recaptcha-validator": "1.0.11",
"regex-trie": "1.0.4",
"s3-streaming-upload": "0.2.3",
"simple-oauth2": "^1.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/koa": "^2.13.6",
"@types/koa__router": "^12.0.0",
"@types/pg": "^8.10.1",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"del": "^2.2.2",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-concat": "^2.4.3",
"gulp-cssnano": "^2.1.3",
"gulp-rev": "^9.0.0",
"gulp-uglify": "^3.0.2",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"vinyl-paths": "^2.1.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4,
"jsxSingleQuote": true,
"arrowParens": "always"
}
}