-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "u-nvk-api",
"version": "0.0.22",
"description": "Api for u-nvk project",
"main": "index.js",
"private": true,
"scripts": {
"dev:watch": "nodemon",
"build": "tsc --project tsconfig.json",
"start": "node -r ./tsconfig-paths-bootstrap.js dist/main.js",
"migrate-latest": "env $(cat .env) knex migrate:latest --cwd ./src",
"migrate-rollback": "env $(cat .env) knex migrate:rollback --cwd ./src",
"eslint:fix": "npx eslint --fix --ext .ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/u-nvk/api.git"
},
"author": "Ermolaev Ilya <Ermolaev.ID@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/u-nvk/api/issues"
},
"homepage": "https://github.com/u-nvk/api#readme",
"dependencies": {
"@fastify/auth": "^4.4.0",
"@fastify/cors": "^8.4.1",
"@fastify/env": "^4.3.0",
"@fastify/postgres": "^5.2.2",
"@fastify/request-context": "^5.0.0",
"@fastify/swagger": "^8.12.0",
"@fastify/swagger-ui": "^1.10.1",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fluent-json-schema": "^4.2.0-beta.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.0.1",
"pg": "^8.11.3",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.8",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}