forked from lynxtaa/unoserver-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "unoserver-web",
"version": "0.5.1",
"private": true,
"description": "Provides API for Unoserver",
"author": "Alex Kondratyuk <lynxtaa@gmail.com>",
"type": "module",
"scripts": {
"build": "rimraf build/* && tsc",
"check-format": "pnpm run prettier --check",
"check-types": "tsc --noEmit",
"dev": "tsc-watch --onSuccess \"cross-env NODE_ENV=development node -r dotenv-safe/config build/index.js\"",
"format": "pnpm run prettier --write",
"lint": "eslint --ext .js,.ts src",
"prepare": "husky install",
"prettier": "prettier 'src/**/*'",
"start": "cross-env 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",
"dependencies": {
"@fastify/cors": "^8.2.1",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"content-disposition": "^0.5.4",
"cross-env": "^7.0.3",
"dotenv-safe": "^8.2.0",
"execa": "^7.1.1",
"fastify": "^4.14.1",
"fastify-multer": "^2.0.3",
"http-errors": "^2.0.0",
"mime-types": "^2.1.35",
"p-queue": "7.3.4",
"p-retry": "^5.1.2",
"pino": "^8.11.0"
},
"devDependencies": {
"@lynxtaa/eslint-config": "^0.5.3",
"@lynxtaa/prettier-config": "^0.1.1",
"@types/content-disposition": "^0.5.5",
"@types/http-errors": "^2.0.1",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.15.3",
"@types/promise-retry": "^1.1.3",
"@vitest/coverage-c8": "^0.29.3",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"is-ci-cli": "^2.2.0",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"rimraf": "^4.4.0",
"tsc-watch": "^6.0.0",
"typescript": "^5.0.2",
"undici": "^5.21.0",
"vitest": "^0.29.3"
},
"packageManager": "pnpm@7.29.1",
"engines": {
"node": ">=18.13.0"
}
}