generated from ODGodinho/Stanley-TheTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.59 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
{
"name": "stanley-the-template-typescript",
"version": "0.0.0",
"description": "Stanley TheTemplate for typescript project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/ODGodinho/Stanley-TheTemplate-Typescript",
"scripts": {
"build": "rimraf dist/ && tsc --project ./tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:watch": "npm run build && (concurrently \"tsc --project ./tsconfig.build.json -w\" \"tsc-alias -p tsconfig.build.json -w\")",
"dev": "tsx ./src/index.ts",
"start": "node ./dist/index.js",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash,.eslintrc",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.json,.jsonc,.json5,.yml,.yaml,.xml,.txt,.svg,.properties,.gradle,.java,.cpp,.c,.cs,.html,.css,.groovy,.gitignore,.npmignore,.toml,.env,.example,.sample,.ini,.php,.bat,.powershell,.ps1,.sh,.bash,.eslintrc --fix",
"prepare": "husky install",
"test": "vitest run",
"test:ci": "vitest run --passWithNoTests",
"test:watch": "vitest --watch"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*": [ "npm run lint:fix" ]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"master",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"files": [
"./dist/",
"./README.md"
],
"author": "Dragons Gamers <https://www.linkedin.com/in/victor-alves-odgodinho>",
"license": "MIT",
"devDependencies": {
"@odg/eslint-config": "*",
"@odg/tsconfig": "*",
"@types/node": ">=18",
"@vitest/coverage-v8": "*",
"concurrently": "^8.2.2",
"eslint": "*",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"tsx": "^4.1.1",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "*",
"vitest": "^0.34.6"
}
}