-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.5 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "node-ts-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"typecheck": "tsc --noEmit",
"pretest": "npm run lint && npm run typecheck",
"test": "NODE_ENV=test jest",
"dev": "node -r @swc-node/register src/main.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main.js",
"clean": "rimraf coverage dist tmp"
},
"author": "kirintw",
"license": "MIT",
"engines": {
"node": ">=18 <19",
"npm": ">=8.15.0 <10"
},
"devDependencies": {
"@swc-node/jest": "^1.6.5",
"@swc-node/register": "^1.6.5",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^47.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.0.4"
},
"dependencies": {
"source-map-support": "^0.5.21"
}
}