-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "typeorm-visual",
"version": "1.0.0",
"description": "Interactive CLI for generating TypeORM entities for NestJS",
"main": "dist/index.js",
"bin": {
"typeorm-visual": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typeorm",
"nestjs",
"cli",
"generator",
"orm",
"database"
],
"author": "Mehdi Harzallah <mahdiharzallah21@gmail.com> (https://github.com/opestro)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/opestro/typeorm-visual.git"
},
"homepage": "https://github.com/opestro/typeorm-visual",
"dependencies": {
"@nestjs/typeorm": "^11.0.0",
"@types/express": "^5.0.1",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"better-sqlite3": "^11.9.1",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"express": "^5.1.0",
"figlet": "^1.7.0",
"inquirer": "^8.2.6",
"mysql": "^2.18.1",
"next": "^15.3.1",
"pg": "^8.14.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.22"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/inquirer": "^8.2.10",
"@types/node": "^22.14.1",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}