-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 899 Bytes
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
{
"name": "graph-api",
"version": "1.0.0",
"description": "Train Ticket Micrsoervices graph API for backslash test task",
"license": "ISC",
"author": "Artem Tantsura <dualitysol@gmail.com>",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node index.ts",
"test": "tsx --test tests/*.test.ts tests/integration/*.test.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.ts\" \"**/*.json\" \"**/*.md\"",
"check": "npm run build && npm test && npm run lint"
},
"dependencies": {
"reflect-metadata": "0.2.2"
},
"devDependencies": {
"@types/node": "25.9.2",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^8.57.1",
"prettier": "^3.8.4",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}