-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.19 KB
/
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
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
{
"name": "mssql-data-source",
"version": "1.5.3",
"private": false,
"description": "A powerful MSSQL DataSource that integrates well with Apollo Server 4.",
"keywords": [
"mssql",
"apollo",
"stored procedure"
],
"homepage": "https://github.com/Falven/mssql-data-source/tree/main",
"bugs": {
"url": "https://github.com/Falven/mssql-data-source/issues"
},
"license": "MIT",
"author": "Falven",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist/cjs/**/*",
"dist/esm/**/*",
"dist/types/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build:esm": "pnpm ts-node --esm ./scripts/esbuild.config.mts --lib --esm",
"build:cjs": "pnpm ts-node --esm ./scripts/esbuild.config.mts --lib",
"build:tsc": "tsc --emitDeclarationOnly",
"build": "concurrently --names \"ESM,CJS,TSC\" -c \"yellow.bold,white.bold,blue.bold\" \"pnpm:build:esm\" \"pnpm:build:cjs\" \"pnpm:build:tsc\"",
"build:dev": "concurrently --names \"ESM,CJS,TSC\" -c \"yellow.bold,white.bold,blue.bold\" \"pnpm:build:esm --dev\" \"pnpm:build:cjs --dev\" \"pnpm:build:tsc\""
},
"dependencies": {
"@apollo/utils.keyvaluecache": "^3.0.0",
"graphql": "^16.7.1",
"graphql-scalars": "^1.22.2",
"lodash": "^4.17.21",
"mssql": "^9.1.1"
},
"devDependencies": {
"@types/lodash": "^4.14.194",
"@types/mssql": "^8.1.2",
"@types/node": "^18.17.14",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"concurrently": "^8.2.1",
"esbuild": "^0.19.2",
"esbuild-node-externals": "^1.9.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.1.1",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"glob": "^10.3.10",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Falven/mssql-data-source.git"
}
}