forked from confluentinc/ksqldb-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@confluentinc/ksqldb-graphql-packages",
"version": "0.0.0",
"private": true,
"author": "Joseph Rea <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/confluentinc/ksqldb-graphql#readme",
"workspaces": [
"packages/*"
],
"dependencies": {
"@apollo/react-hooks": "3.1.3",
"@testing-library/jest-dom": "5.1.1",
"@testing-library/react": "10.0.1",
"@testing-library/user-event": "10.0.0",
"@types/jest": "25.1.4",
"@types/node": "12.12.30",
"@types/react": "16.9.25",
"@types/react-dom": "16.9.5",
"@types/styled-components": "5.0.1",
"apollo-boost": "0.4.7",
"apollo-link-ws": "1.0.19",
"apollo-server": "2.14.2",
"google-maps-react": "2.0.2",
"graphql": "14.6.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"lerna": "3.20.2",
"styled-components": "5.0.1",
"subscriptions-transport-ws": "0.9.16",
"ts-node": "8.8.1",
"typescript": "3.8.3"
},
"scripts": {
"lint": "eslint . --report-unused-disable-directives --ext .tsx,.js",
"in": "yarn install --frozen-lockfile --prefer-offline",
"test": "jest",
"rideshare": "yarn workspace @confluentinc/ksqldb-rideshare start",
"release": "yarn in && lerna publish"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"include": [
"packages/*"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/google-maps-react": "2.0.4",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"eslint-plugin-standard": "4.0.1",
"husky": "4.2.3",
"nodemon": "2.0.2",
"prettier": "2.0.1",
"prettier-eslint": "9.0.1",
"ts-jest": "25.2.1"
}
}