forked from neo4j/graphql
-
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.77 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.77 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": "neo4j-graphql",
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j/graphql.git"
},
"private": true,
"workspaces": [
"packages/*",
"packages/graphql/tests/performance/server",
"examples/neo-place",
"examples/subscriptions/*"
],
"scripts": {
"build": "tsc --build tsconfig.production.json",
"lint": "eslint --cache .",
"test": "jest",
"test-docker": "docker-compose up --build --abort-on-container-exit",
"changeset-version": "changeset version --since $BRANCH && yarn",
"release-dev": "yarn build && changeset publish",
"release-lts": "yarn build && changeset publish --tag lts",
"release-previous": "yarn build && changeset publish --tag previous"
},
"devDependencies": {
"@tsconfig/node20": "20.1.6",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"concurrently": "9.2.1",
"dotenv": "17.2.3",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-formatter-summary": "2.0.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.0.1",
"graphql": "16.11.0",
"jest": "30.2.0",
"neo4j-driver": "6.0.0",
"prettier": "3.6.2",
"prettier-2": "npm:prettier@2.8.8",
"set-tz": "0.2.0",
"ts-jest": "29.4.5",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.10.3",
"dependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7"
}
}