-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 983 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 983 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
31
32
33
34
35
{
"name": "backend-challenge",
"version": "1.0.0",
"description": "Interview backend challenge",
"main": "index.js",
"devDependencies": {
"@types/node": "20.16.11",
"@types/jest": "29.5.13",
"@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.3",
"eslint-plugin-implicit-dependencies": "1.1.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.2.1",
"eslint": "8.55.0",
"expect": "28.1.3",
"prettier": "3.3.3",
"ts-essentials": "10.0.2",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"dependencies": {
"jest": "29.7.0",
"ts-jest": "29.2.5"
},
"scripts": {
"test": "jest",
"ts": "ts-node src/main.ts"
},
"author": "Extend",
"license": "ISC",
"homepage": "https://github.com/helloextend/backend-challenge#readme"
}