-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
55 lines (55 loc) · 1.78 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
{
"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",
"prepare": "husky",
"changeset-version": "changeset version --since $BRANCH && yarn",
"release": "yarn build && changeset publish",
"release-lts": "yarn build && changeset publish --tag lts"
},
"devDependencies": {
"@tsconfig/node16": "1.0.4",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "8.15.0",
"concurrently": "9.1.0",
"dotenv": "16.4.5",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-summary": "1.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"graphql": "16.9.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"neo4j-driver": "5.26.0",
"prettier": "3.3.3",
"prettier-2": "npm:[email protected]",
"set-tz": "0.2.0",
"ts-jest": "29.2.5",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.10"
}
}