-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "mustachebash-api",
"version": "1.16.2",
"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": "^13.1.0",
"braintree": "^3.26.0",
"google-auth-library": "^9.15.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"mailchimp-api-v3": "^1.15.0",
"mailgun-js": "^0.22.0",
"pino": "^9.6.0",
"postgres": "^3.4.5",
"uuid": "^11.0.5"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.7",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"@types/node": "^22.10.6",
"@types/uuid": "^10.0.0",
"chalk": "^5.4.1",
"eslint": "^9.18.0",
"npm-check-updates": "^17.1.13",
"pino-pretty": "^13.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}