-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 915 Bytes
/
package.json
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
{
"name": "@ariga/atlas-provider-typeorm",
"description": "Load Typeorm models into an Atlas project.",
"version": "0.0.1",
"type": "commonjs",
"bin": "src/index.ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"prettier": "3.0.3"
},
"dependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.82",
"@types/node": "^16.11.10",
"@types/yargs": "^17.0.26",
"mssql": "^9.3.2",
"mysql2": "^3.6.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"ts-node": "10.7.0",
"typeorm": "0.3.17",
"typescript": "4.5.2"
},
"scripts": {
"fmt": "eslint src/**.ts --fix && prettier --write src/**.ts",
"fmt-check": "eslint src/**.ts --max-warnings=0 && prettier --check src/**.ts",
"build": "tsc -d src/load.ts --outDir build"
}
}