2
1
mirror of https://github.com/Thream/file-uploads-api.git synced 2024-07-06 21:00:10 +02:00
file-uploads-api/package.json

82 lines
2.6 KiB
JSON
Raw Normal View History

2022-04-08 17:54:56 +02:00
{
"name": "@thream/file-uploads-api",
2023-12-28 05:06:14 +01:00
"version": "1.1.8",
2022-04-08 17:54:56 +02:00
"description": "Thream's application programming interface to upload files.",
"private": true,
"type": "module",
2023-07-22 16:24:52 +02:00
"imports": {
"#src/*": "./build/*"
},
2022-04-08 17:54:56 +02:00
"repository": {
"type": "git",
"url": "https://github.com/Thream/file-uploads-api"
},
"engines": {
"node": ">=16.0.0",
2023-05-13 19:52:44 +02:00
"npm": ">=8.0.0"
2022-04-08 17:54:56 +02:00
},
"scripts": {
2023-01-11 00:24:19 +01:00
"build": "rimraf ./build && swc ./src --out-dir ./build",
2022-04-08 17:54:56 +02:00
"build:dev": "swc ./src --out-dir ./build --watch",
2023-01-11 00:24:19 +01:00
"build:typescript": "tsc",
"start": "node --enable-source-maps build/index.js",
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"npm run build:dev\" \"cross-env NODE_ENV=development node --watch --enable-source-maps build/index.js\"",
2022-04-08 17:54:56 +02:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2023-01-11 00:24:19 +01:00
"lint:markdown": "markdownlint-cli2",
2023-07-22 16:24:52 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
2022-04-08 17:54:56 +02:00
"lint:staged": "lint-staged",
"release": "semantic-release",
"postinstall": "husky install"
},
"dependencies": {
"@fastify/cors": "8.4.0",
2023-09-18 22:28:52 +02:00
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "8.0.0",
2023-07-22 16:24:52 +02:00
"@fastify/rate-limit": "8.0.3",
"@fastify/sensible": "5.5.0",
2023-09-18 22:28:52 +02:00
"@fastify/static": "6.11.2",
"@fastify/swagger": "8.12.0",
"@fastify/swagger-ui": "1.10.1",
"@sinclair/typebox": "0.31.18",
2023-07-02 18:23:20 +02:00
"dotenv": "16.3.1",
"fastify": "4.24.3",
2023-07-22 16:24:52 +02:00
"fastify-plugin": "4.5.1",
2022-04-08 17:54:56 +02:00
"http-errors": "2.0.0",
2023-08-24 22:09:45 +02:00
"read-pkg": "8.1.0"
2022-04-08 17:54:56 +02:00
},
"devDependencies": {
2023-12-28 05:05:32 +01:00
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@saithodev/semantic-release-backmerge": "4.0.1",
2022-04-08 21:35:27 +02:00
"@semantic-release/git": "10.0.1",
2023-04-02 23:37:44 +02:00
"@swc/cli": "0.1.62",
"@swc/core": "1.3.94",
2023-09-18 22:28:52 +02:00
"@tsconfig/strictest": "2.0.2",
"@types/busboy": "1.5.2",
"@types/http-errors": "2.0.3",
"@types/node": "20.8.7",
"@typescript-eslint/eslint-plugin": "6.9.0",
2023-07-22 16:24:52 +02:00
"chokidar": "3.5.3",
"concurrently": "8.2.2",
2022-04-08 17:54:56 +02:00
"cross-env": "7.0.3",
2023-07-02 18:23:20 +02:00
"editorconfig-checker": "5.1.1",
"eslint": "8.52.0",
"eslint-config-conventions": "12.0.0",
2023-08-24 22:09:45 +02:00
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
2023-01-11 00:24:19 +01:00
"eslint-plugin-promise": "6.1.1",
2023-08-24 22:09:45 +02:00
"eslint-plugin-unicorn": "48.0.1",
2023-01-11 00:24:19 +01:00
"husky": "8.0.3",
"lint-staged": "15.0.2",
2023-09-18 22:28:52 +02:00
"markdownlint-cli2": "0.10.0",
2023-07-02 18:23:20 +02:00
"markdownlint-rule-relative-links": "2.1.0",
2023-09-18 22:28:52 +02:00
"prettier": "3.0.3",
"rimraf": "5.0.5",
2023-12-28 05:05:32 +01:00
"semantic-release": "22.0.12",
2023-09-18 22:28:52 +02:00
"typescript": "5.2.2"
2022-04-08 17:54:56 +02:00
}
}