-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.22 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
{
"name": "reactive-analytics",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"openfin-fdc3": "^0.2.0"
},
"workspaces": {
"packages": [
"common",
"server",
"client"
],
"_comment": "styled-components includes react-native causing type conflicts, see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311",
"nohoist": [
"**/react-native",
"**/react-native/**"
]
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.3",
"openfin-cli": "^3.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.5",
"wsrun": "^5.2.1"
},
"scripts": {
"start": "wsrun -m start",
"test": "wsrun -m test",
"format": "prettier --write '{client,server}/**/*.{ts,tsx,json,gql,graphql}'",
"format:check": "prettier --list-different '{client,server}/**/*.{ts,tsx,json,gql,graphql}'",
"openfin": "openfin -c http://localhost:3005/openfin/app.json -l",
"generate-server-schema": "./client/node_modules/.bin/apollo schema:download --endpoint=http://localhost:4000/graphql ./server/graphql-schema.json",
"generate-client-typings": "./client/node_modules/.bin/apollo codegen:generate --localSchemaFile=./server/graphql-schema.json --target=typescript --includes=./client/src/containers/**/*.graphql --tagName=gql --globalTypesFile=./client/src/containers/global-types/global-types.ts --addTypename types"
},
"author": "",
"license": "ISC",
"resolutions": {
"minimist": "^1.2.3",
"dot-prop": "^5.1.1",
"node-fetch": "^2.6.1"
},
"husky": {
"hooks": {
"pre-commit": "wsrun -m --concurrency 1 precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}