-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "node-ts-starter",
"version": "1.0.0",
"description": "A modern Node.js TypeScript starter template with Jest testing",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env.example src/index.ts",
"build": "tsc && tsc-alias",
"start": "node --env-file=.env.example dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"clean": "node clean.cjs"
},
"homepage": "https://github.com/clebertmarctyson/node-ts-starter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/clebertmarctyson/node-ts-starter.git"
},
"bugs": {
"url": "https://github.com/clebertmarctyson/node-ts-starter/issues",
"email": "contact@marctysonclebert.com"
},
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/marctysonclebert"
},
"keywords": [
"typescript",
"nodejs",
"starter",
"template",
"jest"
],
"author": {
"name": "Marc Tyson CLEBERT",
"email": "contact@marctysonclebert.com",
"url": "https://www.marctysonclebert.com"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^30.1.2",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.2",
"jest": "^30.1.3",
"ts-jest": "^29.4.4",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.2",
"tsx": "^4.20.6"
}
}