-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 726 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
{
"name": "typescript-template",
"version": "1.0.0",
"main": "dist/main.js",
"type": "commonjs",
"repository": "git@github.com:Buckwich/typescript-template.git",
"author": "Buckwich <Buckwich@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"lint": "eslint src",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}