-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "typescript-base",
"version": "1.0.0",
"description": "A base typescript project with a testing environment set up.",
"main": "index.js",
"engines": {
"node": "22.13.1",
"npm": "10.9.2"
},
"directories": {
"test": "tests"
},
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc",
"start": "node ./dist/src/main.js",
"start:dev": "ts-node-dev --respawn --transpile-only ./src/main.ts",
"pretest": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scholtz-gnome/typescript-base.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scholtz-gnome/typescript-base/issues"
},
"homepage": "https://github.com/scholtz-gnome/typescript-base#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
}
}