-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "hasura-ndc-neo4j",
"version": "0.0.10",
"private": true,
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"build": "tsc --build tsconfig.production.json",
"start": "ts-node ./src/index.ts serve --configuration=./ --port=8080",
"update:config": "ts-node cli update --context ./",
"start:test": "ts-node ./src/index.ts serve --configuration=__tests__/data/ --port=8080",
"test": "jest --detectOpenHandles",
"changeset-version": "changeset version --since main && npm install",
"release": "npm run build && changeset publish"
},
"dependencies": {
"@hasura/ndc-sdk-typescript": "^4.4.0",
"@neo4j/graphql": "^5.3.2",
"@neo4j/introspector": "^3.0.0",
"camelcase": "^6.3.0",
"commander": "^12.0.0",
"neo4j-driver": "^5.14.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commander-js/extra-typings": "^12.0.1",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^29.5.5",
"@types/node": "^16.18.50",
"@types/pluralize": "^0.0.33",
"axios": "^1.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}