-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "ndc-nodejs-azure-cosmos-connector",
"version": "1.0.0",
"description": "NDC connector for the Azure Cosmos DB for NoSQL database",
"bin": {
"ndc-azure-cosmos": "./dist/cli/index.js"
},
"scripts": {
"test": "mocha",
"ndc-test": "node script/test-setup.js",
"build": "rimraf ./build && tsc",
"start": "npm run build && ts-node ./src/index.ts",
"install-bin": "tsc && npm install -g",
"cli": "ts-node ./src/cli/index.ts",
"runSql": "ts-node ./src/runSql.ts"
},
"author": "Karthikeyan Chinnakonda",
"license": "ISC",
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.5.4",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/fs-extra": "^11.0.4",
"@types/json-pointer": "^1.0.34",
"@types/jsonpath": "^0.2.4",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"chai-as-promised": "^7.1.1",
"commander": "^11.0.0",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.7"
},
"dependencies": {
"@azure/cosmos": "^4.1.0",
"@azure/identity": "^4.0.1",
"@hasura/ndc-sdk-typescript": "^6.1.0",
"@types/fs-extra": "^11.0.4",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"quicktype-core": "^23.0.104",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}