-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.55 KB
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
{
"name": "project-name",
"version": "1.0.0",
"description": "A TypeScript starter template.",
"author": "github.com/m-howard",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"clean": "./scripts/clean.sh",
"dev": "echo \"Not yet implemented\"",
"format": "prettier --write \"./**/*.{ts,mjs,json,md}\"",
"format:check": "prettier --check \"./**/*.{ts,mjs,json,md}\"",
"lint": "eslint \"{src,test,scripts}/**/*.{ts,js}\" --fix",
"lint:check": "eslint \"{src,test,scripts}/**/*.{ts,js}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky"
},
"dependencies": {
"@types/morgan": "^1.9.10",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@clerk/clerk-sdk-node": "^4.13.23",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@faker-js/faker": "^9.6.0",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.10.7",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.18",
"@types/node": "^22.10.7",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"nano-staged": "^0.8.0",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"uuid": "^11.1.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"src/**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node"
},
"nano-staged": {
"*.{md,mjs,ts,json}": [
"npm run format"
],
"*.{mjs,ts}": [
"npm run lint"
]
}
}