-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.85 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
{
"name": "unoserver-web",
"version": "0.7.0",
"private": true,
"description": "Provides API for Unoserver",
"author": "Alex Kondratiuk <lynxtaa@gmail.com>",
"type": "module",
"scripts": {
"build": "rimraf build/* && tsc",
"check-format": "pnpm run prettier --check",
"check-types": "tsc --noEmit",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"node -r dotenv-safe/config build/index.js\"",
"format": "pnpm run prettier --write",
"lint": "eslint src",
"prepare": "husky",
"prettier": "prettier 'src/**/*'",
"start": "NODE_ENV=production node -r dotenv-safe/config build/index.js",
"test": "is-ci-cli \"test:coverage\" \"test:watch\"",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"validate": "pnpm run lint && pnpm run check-format && pnpm run check-types"
},
"prettier": "@lynxtaa/prettier-config",
"nano-staged": {
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@fastify/cors": "9.0.1",
"@fastify/swagger": "8.14.0",
"@fastify/swagger-ui": "2.1.0",
"content-disposition": "0.5.4",
"dotenv-safe": "9.1.0",
"execa": "9.5.2",
"fastify": "4.28.0",
"fastify-multer": "2.0.3",
"http-errors": "2.0.0",
"mime-types": "2.1.35",
"p-queue": "8.0.1",
"p-retry": "6.2.1",
"pino": "9.6.0"
},
"devDependencies": {
"@lynxtaa/eslint-config": "0.13.0",
"@lynxtaa/prettier-config": "0.2.0",
"@types/content-disposition": "0.5.8",
"@types/http-errors": "2.0.4",
"@types/mime-types": "2.1.4",
"@types/node": "22.10.5",
"@vitest/coverage-v8": "2.1.8",
"eslint": "9.17.0",
"husky": "9.1.7",
"is-ci-cli": "2.2.0",
"nano-staged": "0.8.0",
"pino-pretty": "13.0.0",
"prettier": "3.4.2",
"rimraf": "5.0.10",
"tsc-watch": "6.2.1",
"typescript": "5.7.2",
"undici": "7.2.0",
"vitest": "2.1.8"
},
"packageManager": "pnpm@9.15.3",
"engines": {
"node": ">=22.11.0"
}
}