generated from ozanmuyes/template-ts-swc-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "template-ts-swc-jest",
"version": "0.1.0",
"description": "A template for a TypeScript Node.js application using SWC, Jest, ESLint, Prettier",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:cover": "jest --silent --coverage",
"lint": "eslint '*/**/*.{js,ts,md}'",
"lint:fix": "eslint '*/**/*.{js,ts}' --quiet --fix",
"prettier:doc": "prettier *.md --write",
"type_check": "tsc --noEmit",
"build": "rimraf dist && tsc",
"whitelabel": "node ./scripts/whitelabel.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozanmuyes/template-ts-swc-jest.git"
},
"keywords": [
"template",
"nodejs",
"typescript",
"swc",
"jest"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozanmuyes/template-ts-swc-jest/issues"
},
"homepage": "https://github.com/ozanmuyes/template-ts-swc-jest#readme",
"engines": {
"node": "^20"
},
"devDependencies": {
"@swc-node/register": "^1.6.5",
"@swc-node/sourcemap-support": "^0.3.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.62",
"@swc/helpers": "^0.5.1",
"@swc/jest": "^0.2.29",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.2",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/node": "^16.11.22",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"commander": "^11.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"supertest": "^6.3.4",
"testdouble": "^3.20.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.1",
"koa": "^2.15.0",
"mysql2": "^3.9.1",
"zod": "^3.22.4"
}
}