-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.01 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
{
"name": "basic-ts-repo",
"version": "1.0.0",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"files": [
"build"
],
"repository": "[email protected]:vico1993/basic-ts-repo.git",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "jest",
"watch": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"lint": "eslint --ext .ts ."
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.8",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}