forked from neo4j/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.5 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
{
"name": "neo4j-graphql",
"author": "Neo4j Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j/graphql.git"
},
"private": true,
"workspaces": [
"packages/*",
"examples/neo-push/*"
],
"scripts": {
"build": "tsc -b",
"lint": "eslint .",
"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",
"conditional-publish": "yarn workspaces foreach --include \"@neo4j/*\" run conditional-publish"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.1.1",
"@typescript-eslint/parser": "4.15.1",
"concurrently": "6.0.0",
"eslint": "7.9.0",
"eslint-config-airbnb-typescript": "10.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "24.0.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "^7.23.1",
"husky": "4.2.5",
"jest": "26.6.3",
"lint-staged": "10.2.11",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"set-tz": "0.2.0",
"ts-jest": "^26.5.4",
"typescript": "3.9.7"
}
}