forked from neo4j/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.98 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
56
57
58
59
60
{
"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/migration",
"examples/neo-place",
"examples/subscriptions/*"
],
"scripts": {
"build": "tsc --build tsconfig.production.json",
"lint": "eslint --cache .",
"test": "jest",
"test:pr": "run-s lint test",
"test-docker": "docker-compose up --build --abort-on-container-exit",
"prepare": "husky install",
"changeset-version-dev": "changeset version --since dev && yarn",
"changeset-version-master": "changeset version --since master && yarn",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@tsconfig/node16": "1.0.4",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"concurrently": "8.2.1",
"dotenv": "16.3.1",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-formatter-summary": "1.1.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"graphql": "16.8.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "14.0.1",
"neo4j-driver": "5.12.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"set-tz": "0.2.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6"
},
"packageManager": "[email protected]",
"dependencies": {
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2"
}
}