generated from audrow/node-js-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"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",
"bin": {
"tcm": "bin/tcm.js"
},
"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",
"start": "ts-node ./src/index.ts",
"clean": "rm -rf dist",
"prepare": "husky install",
"lint": "eslint src scripts --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",
"main": "npx ts-node ./src/index.ts",
"validate": "npm-run-all check-format build lint test && npm run main -- -h"
},
"files": [
"dist/*"
],
"author": "Audrow Nash",
"contributors": [
"Audrow Nash <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/audrow/sta-website-helpers"
},
"keywords": [
"nodejs",
"template",
"typescript"
],
"homepage": "https://github.com/audrow/sta-website-helpers",
"bugs": {
"mail": "[email protected]",
"url": "https://github.com/audrow/sta-website-helpers/issues"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/jest": "^27.5.0",
"@types/js-yaml": "^4.0.5",
"@types/proper-url-join": "^2.1.1",
"@types/sleep": "^0.0.9",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@octokit/request": "^8.1.1",
"@octokit/request-error": "^4.0.1",
"@types/sort-object-keys": "^1.1.0",
"ajv": "^8.12.0",
"combinate": "^1.1.11",
"commander": "^10.0.1",
"csv": "^6.3.1",
"dotenv": "^16.1.4",
"endent": "^2.1.0",
"fast-xml-parser": "^4.2.4",
"js-yaml": "^4.1.0",
"octokit": "^2.0.19",
"proper-url-join": "^2.1.1",
"ros2-cache": "^0.0.4",
"sitemapper": "^3.2.6",
"sleep": "^6.3.0",
"sort-object-keys": "^1.1.3",
"url-parse": "^1.5.10",
"zod": "^3.21.4"
}
}