|
10 | 10 | ], |
11 | 11 | "scripts": { |
12 | 12 | "clean": "rimraf dist", |
13 | | - "build": "pnpm -r run build && tsc && tsc-alias", |
| 13 | + "build": "tsc && tsc-alias", |
14 | 14 | "dev": "ts-node-dev --respawn --transpile-only --ignore-watch node_modules --ignore-watch dist src/FastKit.ts", |
15 | | - "build:main": "tsc && tsc-alias", |
16 | | - "rebuild": "pnpm -r run clean && pnpm -r run build", |
17 | | - "lint": "pnpm -r run lint", |
18 | | - "lint:fix": "pnpm -r run lint:fix", |
19 | | - "format": "npx prettier . --write", |
20 | | - "test": "pnpm -r run test", |
21 | | - "test:watch": "pnpm -r run test:watch", |
22 | | - "test:coverage": "pnpm -r run test:coverage", |
23 | | - "sync:versions": "npx npm-check-updates --workspace --dep=prod --upgrade --filter /@nexgenstudiodev/*/", |
24 | | - "sync:dev-versions": "npx npm-check-updates --workspace --dep=dev --upgrade --filter /@nexgenstudiodev/*/", |
| 15 | + "rebuild": "pnpm run clean && pnpm run build", |
| 16 | + "lint": "eslint . --ext .ts", |
| 17 | + "lint:fix": "eslint . --ext .ts --fix", |
| 18 | + "format": "prettier --write .", |
| 19 | + "test": "jest", |
| 20 | + "test:watch": "jest --watch", |
| 21 | + "test:coverage": "jest --coverage", |
| 22 | + "sync:versions": "npx npm-check-updates --dep=prod --upgrade", |
| 23 | + "sync:dev-versions": "npx npm-check-updates --dep=dev --upgrade", |
25 | 24 | "sync:all-versions": "pnpm run sync:versions && pnpm run sync:dev-versions", |
26 | 25 | "publish:all": "pnpm -r publish --access public --no-git-checks", |
27 | | - "postinstall": "pnpm -r run build" |
| 26 | + "postinstall": "pnpm run build" |
28 | 27 | }, |
29 | 28 | "keywords": [ |
30 | 29 | "fastkit", |
31 | 30 | "auth", |
32 | 31 | "database", |
33 | 32 | "config", |
34 | 33 | "utilities", |
35 | | - "typescript" |
| 34 | + "typescript", |
| 35 | + "express", |
| 36 | + "api" |
36 | 37 | ], |
37 | 38 | "author": "NexGenStudioDev", |
38 | 39 | "license": "MIT", |
|
41 | 42 | "url": "https://github.com/nexgenstudiodev/fastkit.git" |
42 | 43 | }, |
43 | 44 | "packageManager": "pnpm@10.12.1", |
44 | | - "workspaces": [ |
45 | | - "packages/*" |
46 | | - ], |
47 | 45 | "dependencies": { |
48 | 46 | "@types/figlet": "^1.7.0", |
| 47 | + "@types/jsonwebtoken": "^9.0.10", |
| 48 | + "argon2": "^0.43.0", |
49 | 49 | "boxen": "^8.0.1", |
50 | 50 | "chalk": "^5.4.1", |
51 | 51 | "dotenv": "^16.4.5", |
52 | 52 | "enquirer": "^2.4.1", |
53 | 53 | "express": "^5.1.0", |
54 | 54 | "figlet": "^1.8.2", |
55 | | - "fs": "0.0.1-security", |
| 55 | + "jsonwebtoken": "^9.0.2", |
56 | 56 | "listr2": "^9.0.1", |
57 | 57 | "mongoose": "^8.16.3", |
58 | 58 | "ts-node": "^10.9.2", |
|
73 | 73 | "prompts": "^2.4.2", |
74 | 74 | "rimraf": "^6.0.1", |
75 | 75 | "ts-jest": "^29.4.0", |
76 | | - "ts-node": "^10.9.2", |
77 | 76 | "ts-node-dev": "^2.0.0", |
78 | 77 | "tsc-alias": "^1.8.16", |
79 | 78 | "tsconfig-paths": "^4.2.0", |
80 | 79 | "typescript": "^5.8.3" |
81 | 80 | }, |
82 | 81 | "lint-staged": { |
83 | | - "packages/**/*.{ts,tsx}": [ |
| 82 | + "**/*.{ts,tsx}": [ |
84 | 83 | "eslint --fix", |
85 | 84 | "prettier --write" |
86 | 85 | ] |
|
0 commit comments