-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 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
{
"name": "mssqlgen",
"version": "1.0.0",
"description": "CLI utility to generate StepZen GraphQL schemas from Microsoft SQL Server databases",
"main": "dist/index.js",
"bin": {
"mssqlgen": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"mssql",
"sql-server",
"stepzen",
"graphql",
"schema-generator",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"mssql": "^10.0.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"chalk": "^4.1.2",
"inquirer": "^8.2.6",
"yaml": "^2.3.4",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/mssql": "^9.1.5",
"@types/inquirer": "^8.2.10",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.11",
"ts-jest": "^29.1.1"
},
"engines": {
"node": ">=16.0.0"
}
}