-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "trial-task-kmh",
"version": "1.0.0",
"description": "A small REST API, which returns products, prices and user information for a certain or unknown user.",
"main": "build/app.js",
"scripts": {
"dev": "npx nodemon --config nodemon.json src/app.ts",
"build": "npx tsc",
"watch": "npx tsc -w",
"lint": "npx eslint ./src --ext .ts",
"lint:fix": "npx eslint --fix ./src --ext .ts",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sballert/trial-task-kmh.git"
},
"author": "sballert",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/sballert/trial-task-kmh/issues"
},
"homepage": "https://github.com/sballert/trial-task-kmh#readme",
"dependencies": {
"dayjs": "^1.11.5",
"express": "^4.18.1",
"lodash": "^4.17.21",
"pino": "^8.5.0",
"pino-pretty": "^9.1.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/lodash": "^4.14.185",
"@types/pino": "^7.0.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}