-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1006 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "ko-engineering-interview",
"version": "1.0.0",
"description": "KnownOrigin Node.js Engineering Tech Test",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/knownorigin/ko-engineering-interview.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/knownorigin/ko-engineering-interview/issues"
},
"homepage": "https://github.com/knownorigin/ko-engineering-interview#readme",
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(ts)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
}
},
"engines": {
"node": ">=18",
"npm": ">=8"
}
}