generated from ODGodinho/Stanley-TheTemplate-Typescript
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 3.35 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
93
94
{
"name": "stanley-crawler-event",
"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-Crawler-Event",
"repository": {
"type": "git",
"url": "https://github.com/ODGodinho/Stanley-Crawler-Event"
},
"scripts": {
"reset": "rimraf dist/ node_modules/ && yarn upgrade && yarn build",
"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 --env-file=.env ./src/index.ts",
"start": "node --env-file=.env ./dist/index.js",
"start:build": "yarn build && node --env-file=.env ./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",
"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/",
"./@types/",
"./README.md"
],
"author": "Dragons Gamers <https://www.linkedin.com/in/victor-alves-odgodinho>",
"license": "MIT",
"devDependencies": {
"@odg/command": "*",
"@odg/eslint-config": "*",
"@odg/tsconfig": "*",
"@types/node": ">=20",
"@vitest/coverage-istanbul": "^1",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"rimraf": "*",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^4",
"vitest": "^1"
},
"dependencies": {
"@odg/axios": "*",
"@odg/chemical-x": "*",
"@odg/config": "*",
"@odg/events": "*",
"@odg/exception": "*",
"@odg/json-log": "*",
"@odg/log": "*",
"@odg/message": "*",
"inversify": "^6.2.1",
"inversify-binding-decorators": "^4.0.0",
"playwright": "^1.49.1",
"playwright-core": "^1.49.1",
"reflect-metadata": "^0.2.2",
"zod": "^3.24"
}
}