-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 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
{
"name": "typescript-basic-skeleton",
"version": "2.0.0",
"description": "Bootstrap your new TypeScript project with the bare minimum dependencies",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodelyTV/typescript-basic-skeleton.git"
},
"author": "codelytv",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodelyTV/typescript-basic-skeleton/issues"
},
"homepage": "https://github.com/CodelyTV/typescript-basic-skeleton#readme",
"devDependencies": {
"@swc/core": "1.3.92",
"@swc/jest": "0.2.29",
"@types/jest": "^29.5.12",
"eslint": "^9.9.1",
"eslint-config-codely": "^4.2.0",
"jest": "^29.7.0",
"typescript": "^5.5.4"
}
}