-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "yohira",
"version": "0.0.0-alpha.60",
"description": "Yohira is an experimental project to port ASP.NET Core to TypeScript.",
"main": "dist/index.js",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "~20.12.12",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "~1.6.0",
"concurrently": "^7.6.0",
"conditional-type-checks": "^1.0.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-boundaries": "^4.2.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"json5": "^2.2.3",
"prettier": "^3.2.5",
"rimraf": "~5.0.7",
"tsc-alias": "^1.7.1",
"typescript": "^5.4.5",
"vitest": "~1.6.0"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && tsc && tsc-alias",
"build:watch": "npm run clean && tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")",
"start": "node dist/main.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ycanardeau/yohira.git"
},
"keywords": [
"aspnetcore",
"nodejs",
"typescript"
],
"author": "Aigamo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ycanardeau/yohira/issues"
},
"homepage": "https://github.com/ycanardeau/yohira#readme"
}