-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 4.41 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "fresh-configurator",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/freshollie/fresh-configurator",
"author": "Oliver Bell <freshollie@gmail.com>",
"license": "MIT",
"scripts": {
"clean:lib": "tsc -b --clean tsconfig.build.json",
"clean:codegen": "rimraf './packages/*/src/**/__generated__' 'packages/configurator/src/**/*.graphql.ts'",
"start": "yarn workspace @betaflight/configurator start",
"start:mocked": "yarn workspace @betaflight/configurator start:mocked",
"build": "yarn workspace @betaflight/configurator build",
"build:lib": "tsc -b tsconfig.build.json",
"build:storybook": "yarn workspace @betaflight/configurator build-storybook",
"build:api-docs": "typedoc",
"build:schema-docs": "yarn codegen && graphdoc -s ./schema.graphql -o ./doc/schema --force",
"storybook": "yarn workspace @betaflight/configurator storybook",
"codegen": "graphql-codegen --config codegen.yml",
"test": "jest",
"storyshots": "yarn workspace @betaflight/configurator storyshots",
"storyshots:production": "yarn workspace @betaflight/configurator storyshots:production",
"e2e": "yarn workspace @betaflight/configurator e2e",
"e2e:production": "yarn workspace @betaflight/configurator e2e:production:headless",
"codecept": "yarn workspace @betaflight/configurator codecept:ui",
"lint": "eslint --ext .js,.jsx,.ts,.tsx",
"lint:all": "yarn lint . .*.js",
"fmt": "prettier --write **/*.{ts,tsx,js,jsx}",
"fmt:check": "prettier --check **/*.{ts,tsx,js,jsx}",
"postinstall": "yarn clean:codegen && yarn codegen && husky install",
"prepublishOnly": "yarn clean:lib && yarn build:lib",
"publish": "yarn run prepublishOnly && yarn workspaces foreach --no-private --exclude '@types/*' npm publish --access=public",
"release": "yarn workspace @betaflight/configurator release",
"version": "yarn && git add yarn.lock",
"bump": "yarn lerna version --conventional-commits -y"
},
"workspaces": [
"packages/*",
"tools/*",
"types/*"
],
"devDependencies": {
"@2fd/graphdoc": "^2.4.0",
"@graphql-codegen/add": "^3.1.0",
"@graphql-codegen/cli": "^2.1.1",
"@graphql-codegen/gql-tag-operations": "^1.2.0",
"@graphql-codegen/gql-tag-operations-preset": "^1.2.0",
"@graphql-codegen/introspection": "^2.1.0",
"@graphql-codegen/schema-ast": "^2.1.0",
"@graphql-codegen/typed-document-node": "^2.1.3",
"@graphql-codegen/typescript": "^2.2.0",
"@graphql-codegen/typescript-operations": "^2.1.3",
"@graphql-codegen/typescript-resolvers": "^2.2.0",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-functional": "^3.7.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql": "^15.5.2",
"husky": "^7.0.2",
"jest": "^27.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "0.21.7",
"typescript": "^4.4.2"
},
"resolutions": {
"node-abi": "2.30.0",
"@graphql-codegen/cli": "patch:@graphql-codegen/cli@npm:2.1.1#.yarn/patches/@graphql-codegen-cli-npm-2.1.1-f1f785d069",
"codeceptjs": "patch:codeceptjs@npm:3.1.3#.yarn/patches/codeceptjs-npm-3.1.3-294bd19eb6",
"@graphql-codegen/gql-tag-operations": "patch:@graphql-codegen/gql-tag-operations@npm:1.2.0#.yarn/patches/@graphql-codegen-gql-tag-operations-npm-1.2.0-f07e1ad902"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"**/*.{json,graphql,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"dependenciesMeta": {
"@codeceptjs/ui@0.4.6": {
"unplugged": true
},
"dmg-builder@22.13.1": {
"unplugged": true
},
"open@7.0.4": {
"unplugged": true
}
},
"graphdoc": {
"graphiql": "https://betaflight-mock-api.herokuapp.com/graphql"
},
"packageManager": "yarn@3.0.2"
}