-
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) · 755 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 755 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",
"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": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"eslint-plugin-jest": "^29.2.1",
"jest": "^30.2.0",
"ts-node": "^10.9.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"dependencies": {
}
}