forked from neo4j/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.03 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.",
"repository": {
"type": "git",
"url": "git+https://github.com/smartdataHQ/graphql.git"
},
"private": true,
"workspaces": [
"docs",
"packages/*",
"examples/migration",
"examples/neo-push/*",
"packages/plugins/*"
],
"scripts": {
"build": "tsc --build tsconfig.production.json",
"lint": "eslint --cache .",
"test": "jest",
"test:pr": "run-s lint test",
"neo-push": "concurrently \"yarn workspace neo-push-server start\" \"yarn workspace neo-push-client start\"",
"neo-push:seed": "yarn workspace neo-push-server run seed",
"test-docker": "docker-compose up --build --abort-on-container-exit",
"prepare": "husky install",
"changeset-version": "changeset version && yarn",
"changeset-version-master": "changeset version --since master && yarn",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@tsconfig/node16": "1.0.3",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"concurrently": "7.6.0",
"dotenv": "16.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-formatter-summary": "1.1.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"graphql": "16.6.0",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.0.3",
"neo4j-driver": "5.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"set-tz": "0.2.0",
"ts-jest": "29.0.3",
"typescript": "4.9.3"
},
"packageManager": "yarn@3.3.0",
"dependencies": {
"@changesets/changelog-github": "0.4.7",
"@changesets/cli": "2.25.2"
}
}