-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.27 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "six-cities",
"version": "5.0.0",
"description": "Проект «Шесть городов» от HTML Academy",
"author": "yanovmikhail <yanovmikhailco@ya.ru>",
"license": "MIT",
"keywords": [
"rest",
"api",
"node.js"
],
"main": "main.rest.js",
"scripts": {
"start": "npm run build && node ./dist/main.rest.js",
"build": "npm run clean && npm run compile",
"dev": "npx nodemon",
"cli": "npx ts-node ./src/main.cli.ts",
"lint": "eslint src/ --ext .ts",
"compile": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"ts": "ts-node",
"prettify": "prettier --write",
"prettify:all": "prettier --write ./src",
"mock:server": "json-server ./mocks/mock-server-data.json --port 3123",
"test:mock": "npm run cli -- --generate 100 ./mocks/test-data.tsv http://localhost:3123/api"
},
"devDependencies": {
"@types/cli-table": "^0.3.4",
"@types/convict": "6.1.4",
"@types/convict-format-with-validator": "6.0.3",
"@types/cors": "2.8.15",
"@types/express": "4.17.21",
"@types/mime-types": "2.1.4",
"@types/multer": "1.4.11",
"@types/node": "18.17.17",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.49.0",
"eslint-config-htmlacademy": "9.1.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "4.2.1",
"json-server": "0.17.3",
"nodemon": "3.0.1",
"pino-pretty": "10.2.0",
"prettier": "2.8.1",
"rimraf": "5.0.1",
"ts-node": "10.9.1",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"type": "module",
"engines": {
"node": "^18.0.0",
"npm": ">=8"
},
"dependencies": {
"@typegoose/typegoose": "11.5.0",
"chalk": "5.3.0",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"cli-table": "0.3.11",
"convict": "6.2.4",
"convict-format-with-validator": "6.2.0",
"cors": "2.8.5",
"dayjs": "1.11.10",
"dotenv": "16.4.1",
"express": "4.18.2",
"express-async-handler": "1.2.0",
"glob": "10.3.10",
"got": "13.0.0",
"http-status-codes": "2.3.0",
"inversify": "6.0.1",
"jose": "5.2.2",
"mime-types": "2.1.35",
"mongoose": "7.5.3",
"multer": "1.4.5-lts.1",
"pino": "8.15.1",
"reflect-metadata": "0.1.13"
}
}