-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 2.09 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
{
"name": "adaptive-insights",
"version": "1.0.0",
"description": "",
"main": "index.js",
"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",
"lerna": "^3.22.1",
"openfin-cli": "^3.0.2",
"prettier": "^2.0.2",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.5"
},
"scripts": {
"start": "npm run bootstrap && lerna run --parallel start",
"offline-start": "set INSIGHTS_OFFLINE=true && npm run start",
"bootstrap": "lerna bootstrap",
"clean": "npm install && lerna clean --yes",
"test": "echo \"Error: no test specified\" && exit 1",
"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:3000/openfin/app.json -l",
"demo": "lerna run --parallel demo",
"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",
"dependencies": {
"openfin-fdc3": "^0.2.0"
},
"resolutions": {
"graphql": "^14.5.8"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}