-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
{
"name": "node-typescript-template",
"version": "0.0.1",
"description": "This is a template repo for Node projects written in TypeScript.",
"private": false,
"homepage": "https://github.com/john-d-pelingo/node-typescript-template",
"author": {
"email": "johndarrylpelingo@gmail.com",
"name": "John Darryl Pelingo",
"url": "https://johndpelingo.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/john-d-pelingo/node-typescript-template",
"directory": "packages/prettier-config"
},
"bugs": {
"url": "https://github.com/john-d-pelingo/node-typescript-template/issues"
},
"keywords": [
"node",
"typescript",
"template"
],
"prettier": "@jdp-dev/prettier-config",
"standard-version": {
"scripts": {
"prerelease": "yarn build"
}
},
"main": "./build/index.js",
"scripts": {
"--DEVELOPMENT--": "echo \"--DEVELOPMENT--\" && exit 1",
"dev": "ts-node-dev src/index.ts",
"format": "prettier --write 'src/**/*.{css,js,ts}' '**/*.md'",
"lint": "eslint ./src/ --ext .js,.ts --max-warnings 0 --report-unused-disable-directives",
"postinstall": "husky install",
"sweep": "rimraf build",
"test": "exit 0",
"test:t": "tsc --noEmit",
"--BUILD--": "echo \"--BUILD--\" && exit 1",
"prebuild": "run-s sweep lint test:t test",
"build": "tsc",
"build:pr": "tsc",
"--PRODUCTION--": "echo \"--PRODUCTION--\" && exit 1",
"start": "NODE_ENV=production node build/index.js"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@jdp-dev/commitlint-config": "^1.2.0",
"@jdp-dev/eslint-config-typescript": "^1.2.0",
"@jdp-dev/prettier-config": "^1.2.0",
"@jdp-dev/tsconfig": "^1.2.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"rimraf": "^6.0.0",
"standard-version": "^9.3.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
}
}