-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "topic-tool-api",
"version": "1.0.0",
"description": "The API for a tool for managing topic lists for an upcoming meeting",
"main": "index.js",
"scripts": {
"serve": "node build/index.js",
"serve-debug": "node --inspect=0.0.0.0 build/index.js",
"watch": "tsc-watch --onSuccess \"npm run serve-debug\"",
"build": "tsc",
"lint": "eslint \"src/**\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.0",
"koa-cors": "^0.0.16",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1",
"mongoose": "^6.4.6",
"nodemailer": "^6.7.3",
"nodemailer-html-to-text": "^3.2.0",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/koa-compose": "^3.2.5",
"@types/koa-compress": "^4.0.3",
"@types/koa-cors": "^0.0.2",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/nodemailer": "^6.4.4",
"@types/nodemailer-html-to-text": "^3.1.0",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"tsc-watch": "^4.6.2",
"typescript": "^4.6.3"
},
"volta": {
"node": "16.14.2",
"npm": "8.7.0"
}
}