-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 KB
/
package.json
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
52
53
54
55
56
57
58
{
"name": "@saulonunesdev/boootstrap",
"version": "0.0.1",
"description": "A TS Bootstrap BoilerPlate",
"author": "Saulo Nunes <[email protected]> (https://saulo.taverna.dev)",
"license": "MIT",
"scripts": {
"prepare": "husky",
"precommit": "lint-staged",
"test": "npm-run-all -s test:*",
"test:depcheck": "depcheck .",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a registry.npmjs.org -s",
"test:package": "npmPkgJsonLint .",
"test:audit": "npm audit --omit=dev",
"test:yaml": "yamllint **/*.{yaml,yml}",
"test:eslint": "eslint .",
"test:ts": "tsc --noemit",
"test:jest": "jest --silent --no-cache",
"fix": "npm-run-all -s fix:*",
"fix:eslint": "eslint . --fix",
"start": "node build/index.js",
"compile": "tsc -p tsconfig.build.json"
},
"keywords": [
"typescript",
"boilerplate",
"bootstrap",
"linters",
"husky",
"hooks",
"repo",
"git"
],
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"depcheck": "^1.4.7",
"eslint": "^8.53.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"lockfile-lint": "^4.12.1",
"npm-package-json-lint": "^7.1.0",
"npm-package-json-lint-config-default": "^6.0.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.1.2",
"typescript": "5.2.2",
"yaml-lint": "^1.7.0"
}
}