-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
59
60
61
62
63
64
{
"name": "node-ts-template",
"version": "0.0.1",
"description": "A starting point for NodeJS Typescript projects.",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"source": "src/index.ts",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"build:esm": "tsc --project ./tsconfig.esm.json",
"build:types": "tsc --project ./tsconfig.types.json",
"clean": "rm -rf dist",
"prepare": "husky install",
"lint": "eslint src --ignore-path .gitignore --max-warnings 0",
"prettier": "prettier --ignore-path .gitignore \"**/*.(js|jsx|json|yml|yaml|css|ts|tsx|md|mdx)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"test": "jest",
"validate-sync": "npm-run-all lint check-format test build",
"validate": "npm-run-all --parallel lint check-format test build"
},
"files": [
"dist"
],
"author": "Audrow Nash",
"contributors": [
"Audrow Nash <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/audrow/node-js-template"
},
"keywords": [
"nodejs",
"template",
"typescript"
],
"homepage": "https://github.com/audrow/node-js-template",
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/audrow/node-js-template/issues"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^27.5.0",
"@types/proper-url-join": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}