-
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.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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": "0.0.0",
"description": "Node.js + TypeScript boilerplate",
"scripts": {
"start:dev": "ts-node ./src/index.ts",
"lint": "eslint . --ext .ts",
"test": "jest --coverage",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ehenon/node-typescript-boilerplate.git"
},
"author": "ehenon",
"license": "MIT",
"bugs": {
"url": "https://github.com/ehenon/node-typescript-boilerplate/issues"
},
"homepage": "https://github.com/ehenon/node-typescript-boilerplate#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.21",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^4.3.8",
"jest": "^29.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}