-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "node-boilerplate",
"version": "1.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript 🚀",
"author": "Raja Rakotonirina <raja.rakoto7@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/RajaRakoto/node-boilerplate.git"
},
"homepage": "https://github.com/RajaRakoto/node-boilerplate#readme",
"bugs": "https://github.com/RajaRakoto/node-boilerplate/issues",
"files": ["dist"],
"keywords": [
"typescript",
"nodejs",
"node",
"minimalist",
"boilerplate",
"template",
"starter"
],
"engines": {
"node": ">= 20.10.0"
},
"volta": {
"node": "20.10.0"
},
"scripts": {
"start": "node dist/src/index.js",
"start:bundle": "node dist/bundle.js",
"clean": "rimraf build dist coverage",
"dev:tsc:watch": "tsc-watch --onSuccess \"node cache/esbuild.test.js\"",
"dev:nodemon:watch": "nodemon cache/bundle.test.js --no-stdin",
"build": "bun run clean && tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:bundle": "node esbuild.js",
"test": "bun test",
"test:watch": "bun test --watch",
"biome:start": "biome start",
"biome:stop": "biome stop",
"biome:fix": "biome check --fix .",
"biome:unsafe": "biome check --fix --unsafe .",
"backup": "grunt backup",
"pkg-check": "depcheck",
"pkg-upgrade": "ncu --interactive --format group --packageManager bun",
"versioning": "ungit",
"npm-version:major": "npm version major",
"npm-version:minor": "npm version minor",
"npm-version:patch": "npm version patch",
"nvm": "nvm use"
},
"dependencies": {
"dotenv": "^16.4.5",
"tslib": "~2.6"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "latest",
"@types/jest": "~29.5",
"@types/node": "~22.1.0",
"depcheck": "^1.4.7",
"esbuild": "^0.23.0",
"grunt": "^1.6.1",
"grunt-contrib-compress": "^2.0.0",
"jest": "~29.7",
"load-grunt-tasks": "^5.1.0",
"nodemon": "^3.1.4",
"npm-check-updates": "^17.0.6",
"rimraf": "~6.0",
"ts-api-utils": "~1.3",
"ts-jest": "~29.2",
"tsc-watch": "^6.2.0",
"typescript": "~5.5",
"ungit": "^1.5.26"
}
}