-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 869 Bytes
/
package.json
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": "node-typescript-starter",
"version": "1.0.0",
"description": "An opinionated starter template for TypeScript/Node projects",
"main": "dist/main.js",
"scripts": {
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage",
"build": "tsc"
},
"author": "Dylan Sprague",
"license": "MIT",
"repository": "github:DylanSp/typescript-node-starter",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}