-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 931 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
{
"name": "typescript-seed",
"version": "1.0.0",
"description": "template project for typescript",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint --ext .ts src tests",
"lint:fix": "eslint --fix src tests --ext=.ts",
"start": "ts-node src/index.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.62.1",
"eslint": "^10.8.0",
"eslint-plugin-jest": "^29.15.4",
"jest": "^30.4.2",
"ts-node": "^10.9.2",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
},
"dependencies": {},
"packageManager": "pnpm@11.4.0+sha512.f0febc7e37552ab485494a914241b338e0b3580b93d54ce31f00933015880863129038a1b4ae4e414a0ee63ac35bf21197e990172c4a68256450b5636310968f"
}