-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.45 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.45 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
87
88
89
90
{
"name": "@nexgenstudiodev/fastkit",
"type": "commonjs",
"version": "1.3.0",
"description": "A modular, class-based toolkit for fast API development with TypeScript and Express.",
"main": "dist/FastKit.js",
"types": "dist/FastKit.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc && tsc-alias",
"dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --ignore-watch dist src/FastKit.ts",
"rebuild": "pnpm run clean && pnpm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"sync:versions": "npx npm-check-updates --dep=prod --upgrade",
"sync:dev-versions": "npx npm-check-updates --dep=dev --upgrade",
"sync:all-versions": "pnpm run sync:versions && pnpm run sync:dev-versions",
"publish:all": "pnpm -r publish --access public --no-git-checks",
"postinstall": "pnpm run build"
},
"keywords": [
"fastkit",
"auth",
"database",
"config",
"utilities",
"typescript",
"express",
"api"
],
"author": "NexGenStudioDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nexgenstudiodev/fastkit.git"
},
"packageManager": "pnpm@10.12.1",
"dependencies": {
"@types/figlet": "^1.7.0",
"@types/jsonwebtoken": "^9.0.10",
"argon2": "^0.43.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"dotenv": "^16.4.5",
"enquirer": "^2.4.1",
"express": "^5.1.0",
"figlet": "^1.8.2",
"jsonwebtoken": "^9.0.2",
"listr2": "^9.0.1",
"mongoose": "^8.16.3",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"jest": "^30.0.3",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prompts": "^2.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"pnpm": ">=8.0.0"
}
}