-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.24 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.24 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
{
"name": "node-typescript-boilerplate",
"version": "1.0.0",
"description": "Node project boilerplate using TypeScript",
"scripts": {
"build": "npm run lint && npm run build-ts",
"build-ts": "npx tsc",
"dev": "npx nodemon ./src/main.ts",
"lint": "npx eslint --cache --cache-location .cache/.eslintcache --fix --ext .jsx,.js,.tsx,.ts ./src",
"prepare": "husky",
"start": "node ./dist/main.js",
"test": "npx jest --coverage --verbose",
"test:watch": "npx jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nephdog/node-typescript-boilerplate.git"
},
"author": "Nephi Grant",
"license": "MIT",
"bugs": {
"url": "https://github.com/nephdog/node-typescript-boilerplate/issues"
},
"homepage": "https://github.com/nephdog/node-typescript-boilerplate#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}