-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 993 Bytes
/
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
{
"name": "backend-challenge",
"version": "1.0.0",
"description": "Interview backend challenge",
"main": "index.js",
"devDependencies": {
"@types/node": "^20.*",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-implicit-dependencies": "1.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint": "8.55.0",
"expect": "^28.1.3",
"prettier": "^3.1.1",
"ts-essentials": "^10.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
},
"scripts": {
"test": "jest",
"ts": "ts-node src/main.ts"
},
"author": "Extend",
"license": "ISC",
"homepage": "https://github.com/helloextend/backend-challenge#readme"
}