-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.52 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.52 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
{
"name": "transformers-api",
"version": "2.0.0",
"description": "Modern TypeScript API for Transformers character names with comprehensive security and testing",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"transformers-api": "./dist/index.js"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "npm run clean && npx tsc && npx tsc-alias -p tsconfig.json --resolve-full-paths",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"type-check": "npx tsc --noEmit --project tsconfig.check.json",
"validate": "npm run type-check && npm run lint && npm run format:check",
"clean": "rimraf dist coverage",
"prestart": "npm run build",
"audit-fix": "npm audit fix",
"deps-check": "npm outdated",
"deps-update": "npm update",
"prepare": "husky"
},
"keywords": [
"transformers",
"api",
"names",
"typescript",
"express",
"rest-api"
],
"author": "Andres Castro <andres.ca@gmail.com> (http://crac.dev)",
"license": "MIT",
"dependencies": {
"@cracdev/transformers-names": "^2.0.1",
"compression": "^1.8.1",
"cors": "^2.8.5",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^24.3.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"supertest": "^7.1.4",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}