-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 984 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
31
32
{
"name": "typescripttemplate",
"version": "1.0.0",
"description": "A template for your Typescript Project, complete with docker, prettifier, jest, and eslint.",
"main": "src/main.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "node build/main.js",
"dev": "npx ts-node src/main.ts",
"lint": "npx prettier . --write && eslint src",
"test": "ts-mocha -p tsconfig.json test/**/*.ts"
},
"author": "Triserden",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.4.0",
"prettier": "3.3.2",
"rimraf": "^5.0.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "5.4.5"
}
}