-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.7 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.7 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
{
"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",
"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/node24": "24.0.4",
"@typescript-eslint/eslint-plugin": "8.58.1",
"@typescript-eslint/parser": "8.58.1",
"concurrently": "9.2.1",
"dotenv": "17.4.1",
"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.15.2",
"graphql": "16.13.2",
"jest": "30.3.0",
"neo4j-driver": "6.0.1",
"prettier": "3.8.1",
"prettier-2": "npm:prettier@2.8.8",
"set-tz": "0.2.0",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
},
"packageManager": "yarn@4.13.0",
"dependencies": {
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0"
}
}