-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.34 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"type": "module",
"name": "template-api",
"description": "The template for USThing backend services.",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "fastify start --import=tsx --watch --log-level=debug --pretty-logs --options src/app.ts",
"test": "tsx --test --experimental-test-coverage test/**/*.test.ts",
"compile": "tsgo --noEmit && tsgo -p test/tsconfig.json --noEmit",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"fmt": "prettier --write --list-different .",
"fmt:check": "prettier --check .",
"build": "yarn clean && tsgo",
"start": "fastify start --log-level=info --options dist/src/app.js",
"clean": "rimraf dist",
"prepare": "husky"
},
"lint-staged": {
"!(*.{js,ts})": [
"yarn fmt",
"git add"
],
"*.{js,ts}": [
"yarn lint",
"yarn fmt",
"git add"
]
},
"engines": {
"node": ">= 24"
},
"author": "USThing Team",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/cors": "^11.2.0",
"@fastify/mongodb": "^10.0.0",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@fastify/type-provider-typebox": "^6.1.0",
"@scalar/fastify-api-reference": "^1.44.24",
"fastify": "^5.8.1",
"fastify-cli": "^7.4.1",
"fastify-metrics": "^12.1.0",
"fastify-plugin": "^5.1.0",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^3.2.2",
"openid-client": "^6.8.2",
"pino-loki": "^3.0.0",
"typebox": "~1.1.5"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@eslint/js": "^9.39.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.0",
"@typescript/native-preview": "^7.0.0-dev.20260219.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mongodb-memory-server": "11.0.1",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"rimraf": "^6.1.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}