-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "api",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node bin/www",
"dev": "TZ=UTC NODE_ENV=development ./node_modules/.bin/nodemon bin/www",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prd": "pm2 start bin/www",
"inspect": "nodemon --inspect ./bin/www"
},
"nodemonConfig": {
"ext": "js, mjs, json, graphql"
},
"dependencies": {
"@apollo/server": "^4.7.1",
"@as-integrations/koa": "^1.0.0",
"bcryptjs": "^2.4.3",
"dataloader": "^2.0.0",
"debug": "^4.3.2",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"graphql-scalars": "^1.21.3",
"graphql-upload": "^15.0.2",
"gravatar": "^1.8.2",
"hashids": "^2.3.0",
"ioredis": "^5.3.2",
"kcors": "^2.2.1",
"koa": "^2.13.3",
"koa-body": "^6.0.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.0.1",
"koa-onerror": "^4.1.0",
"koa-router": "^12.0.0",
"koa-session": "^6.2.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"mysql2": "^3.3.0",
"sanitize-filename": "^1.6.3",
"sequelize": "^6.7.0",
"sharp": "^0.32.1",
"showdown": "^2.1.0",
"slug": "^8.2.2",
"striptags": "^3.2.0",
"triple-beam": "^1.3.0",
"uuid": "^9.0.0",
"winston": "^3.2.1",
"winston-loggly-bulk": "^3.2.1"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^3.0.1"
}
}