-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "mustachebash-api",
"version": "1.15.0",
"description": "Mustache Bash API",
"main": "dist/index.js",
"type": "module",
"private": true,
"author": "Wild Feather LLC",
"scripts": {
"dev": "tsx watch --clear-screen=false lib/index.ts",
"build": "rm -rf dist && tsc",
"test": "eslint . && tsc --noEmit",
"start": "node .",
"check:updates": "ncu",
"update:packages": "ncu -u"
},
"license": "ISC",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"braintree": "^3.21.0",
"google-auth-library": "^9.6.3",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.0",
"koa-bodyparser": "^4.4.1",
"mailchimp-api-v3": "^1.15.0",
"mailgun-js": "^0.22.0",
"pino": "^8.18.0",
"postgres": "^3.4.3",
"qrcode": "^1.5.3",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.5",
"@types/koa": "^2.14.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/node": "^20.11.17",
"@types/uuid": "^9.0.8",
"chalk": "^5.3.0",
"eslint": "^8.56.0",
"npm-check-updates": "^16.14.15",
"pino-pretty": "^10.3.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
}
}