-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 970 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 970 Bytes
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
{
"name": "node-starter-boilerplate",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test-commitlint": "npx commitlint --from HEAD~1 --to HEAD --verbose",
"format": "prettier --write . ",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"start:dev": "npx nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "2.8.3",
"rimraf": "^4.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}