-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.07 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
38
39
40
41
42
{
"name": "@pascal-giguere/starter-node",
"description": "Pascal's starter Node project",
"version": "1.0.0",
"author": "Pascal Giguère",
"homepage": "https://github.com/pascal-giguere/starter-node",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/pascal-giguere/starter-node.git"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20",
"npm": "please-use-yarn",
"yarn": "4.4.1"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"serve": "node .",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}