2022-04-08 17:54:56 +02:00
|
|
|
{
|
|
|
|
"name": "@thream/file-uploads-api",
|
2023-05-13 19:58:09 +02:00
|
|
|
"version": "1.1.4",
|
2022-04-08 17:54:56 +02:00
|
|
|
"description": "Thream's application programming interface to upload files.",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
|
|
|
"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",
|
2022-04-08 17:54:56 +02:00
|
|
|
"start": "node build/index.js",
|
|
|
|
"dev": "concurrently -k -n \"TypeScript,Node\" -p \"[{name}]\" -c \"blue,green\" \"npm run build:dev\" \"cross-env NODE_ENV=development nodemon build/index.js\"",
|
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2023-01-11 00:24:19 +01:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-07-02 18:23:20 +02:00
|
|
|
"lint:eslint": "eslint . --ignore-path .gitignore",
|
|
|
|
"lint:prettier": "prettier . --check --ignore-path .gitignore",
|
2022-04-08 17:54:56 +02:00
|
|
|
"lint:staged": "lint-staged",
|
|
|
|
"release": "semantic-release",
|
|
|
|
"postinstall": "husky install"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-07-02 18:23:20 +02:00
|
|
|
"@fastify/cors": "8.3.0",
|
|
|
|
"@fastify/helmet": "11.0.0",
|
|
|
|
"@fastify/multipart": "7.7.0",
|
|
|
|
"@fastify/rate-limit": "8.0.1",
|
2023-01-11 00:24:19 +01:00
|
|
|
"@fastify/sensible": "5.2.0",
|
2023-07-02 18:23:20 +02:00
|
|
|
"@fastify/static": "6.10.2",
|
|
|
|
"@fastify/swagger": "8.6.0",
|
|
|
|
"@fastify/swagger-ui": "1.9.2",
|
|
|
|
"@sinclair/typebox": "0.29.0",
|
|
|
|
"dotenv": "16.3.1",
|
|
|
|
"fastify": "4.19.1",
|
2023-04-02 23:37:44 +02:00
|
|
|
"fastify-plugin": "4.5.0",
|
2022-04-08 17:54:56 +02:00
|
|
|
"http-errors": "2.0.0",
|
2023-05-13 19:47:36 +02:00
|
|
|
"read-pkg": "8.0.0"
|
2022-04-08 17:54:56 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-02 18:23:20 +02:00
|
|
|
"@commitlint/cli": "17.6.6",
|
|
|
|
"@commitlint/config-conventional": "17.6.6",
|
2023-05-13 19:47:36 +02:00
|
|
|
"@saithodev/semantic-release-backmerge": "3.2.0",
|
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",
|
2023-07-02 18:23:20 +02:00
|
|
|
"@swc/core": "1.3.67",
|
2023-05-13 19:47:36 +02:00
|
|
|
"@tsconfig/strictest": "2.0.1",
|
2022-04-08 17:54:56 +02:00
|
|
|
"@types/busboy": "1.5.0",
|
2023-04-02 23:37:44 +02:00
|
|
|
"@types/http-errors": "2.0.1",
|
2023-07-02 18:23:20 +02:00
|
|
|
"@types/node": "20.3.3",
|
|
|
|
"@typescript-eslint/eslint-plugin": "5.60.1",
|
|
|
|
"concurrently": "8.2.0",
|
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.44.0",
|
|
|
|
"eslint-config-conventions": "10.0.0",
|
2023-04-02 23:37:44 +02:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
|
|
|
"eslint-plugin-import": "2.27.5",
|
2023-01-11 00:24:19 +01:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-05-13 19:47:36 +02:00
|
|
|
"eslint-plugin-unicorn": "47.0.0",
|
2023-01-11 00:24:19 +01:00
|
|
|
"husky": "8.0.3",
|
2023-07-02 18:23:20 +02:00
|
|
|
"lint-staged": "13.2.3",
|
|
|
|
"markdownlint-cli2": "0.8.1",
|
|
|
|
"markdownlint-rule-relative-links": "2.1.0",
|
2023-04-02 23:37:44 +02:00
|
|
|
"nodemon": "2.0.22",
|
2023-05-13 19:47:36 +02:00
|
|
|
"prettier": "2.8.8",
|
2023-07-02 18:23:20 +02:00
|
|
|
"rimraf": "5.0.1",
|
|
|
|
"semantic-release": "21.0.6",
|
2023-05-13 19:47:36 +02:00
|
|
|
"typescript": "5.0.4"
|
2022-04-08 17:54:56 +02:00
|
|
|
}
|
|
|
|
}
|