-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 708 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 708 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-base",
"version": "1.0.0",
"description": "Base template for typescript projects",
"repository": {
"type": "git"
},
"license": "MIT",
"author": "Fl4v",
"main": "dist/index.js",
"scripts": {
"build": "node esbuild.js",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"esbuild": "^0.14.53",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}