-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.14 KB
/
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
33
34
35
36
37
{
"name": "@fridgefm/node-ts-boiler",
"version": "0.0.0-stub",
"description": "A simple template for a library with built-in ts, jest, eslint, prettier support",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"module": "lib/index.js",
"type": "module",
"license": "MIT",
"keywords": ["boilerplate", "template", "node"],
"scripts": {
"start": "tsx watch ./src/",
"build": "tsc --listEmittedFiles",
"build:watch": "tsc --watch",
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"test:lint": "eslint -c .eslintrc.cjs",
"test:types": "tsc --noEmit",
"test:unit": "jest",
"test:unit:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.10.3",
"typescript": "^5.4.5"
}
}