-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
43
44
45
46
47
48
49
50
51
52
{
"name": "node-template",
"version": "0.1.0",
"description": "A Node.js template project with TypeScript, Rollup, and Vitest",
"type": "module",
"engines": {
"node": "22"
},
"scripts": {
"start": "node dist/bundle.mjs",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "tsc -p tsconfig.release.json",
"bundle": "rollup -c",
"lint": "eslint . --ext .ts --ext .mts",
"test": "vitest --run --coverage",
"prettier": "prettier --config .prettierrc --write .",
"prettier:check": "prettier --config .prettierrc --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/veeso-dev/node-template.git"
},
"author": "Christian Visintin <christian.visintin@veeso.dev>",
"license": "MIT",
"dependencies": {
"meow": "^13.2.0",
"pino": "^9.7.0",
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitest/coverage-v8": "3.2.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10",
"prettier": "^3.5.3",
"rollup": "^4.44.0",
"tempfile": "^5",
"ts-node": "^10.9.2",
"tsutils": "^3",
"tsx": "^4.20.3",
"typescript": "^5",
"typescript-eslint": "^8.34.0",
"vitest": "^3.2.3"
}
}