-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
138 lines (138 loc) · 5.42 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"private": true,
"license": "MIT",
"engines": {
"node": ">=14"
},
"scripts": {
"postinstall": "check-node-version --package --print && cross-env NODE_ENV=development yarn build",
"clean": "rm -rf coverage; lerna exec -- rimraf lib dist",
"commit": "git-cz",
"build": "lerna run build --no-private",
"check-gh-auth-token": "if [[ -z \"${GITHUB_AUTH}\" ]]; then echo \"Need to set GITHUB_AUTH\" && exit 1; fi",
"build:typings": "NODE_ENV=production lerna run build:typings --no-private",
"lint": "jest --projects jest.eslint.config.js jest.flow.config.js",
"lint:js": "jest --config jest.eslint.config.js",
"test": "cross-env NODE_ENV=development jest --config jest.test.config.js",
"test:watch": "yarn test --watch",
"test:package": "cross-env NODE_ENV=development ./scripts/test-package",
"pretest:integration": "./scripts/install-npm-packages-for-integration-tests",
"test:integration": "cross-env NODE_ENV=development jest --config integration-tests/jest.test.config.js",
"format": "yarn format:js && yarn format:md",
"format:js": "prettier --write '{packages,integration-tests,types}/**/*.{js,ts}'",
"format:md": "prettier --parser markdown --write '**/*.md'",
"test:coverage": "yarn build && npm test -- --no-watchman --coverage",
"test:ci": "yarn test --ci --no-watchman --maxWorkers=10",
"test:coverage:ci": "yarn test:ci -- --coverage && codecov",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "yarn docs:prepare && gitbook build && cp logo/apple-touch-icon.png _book/gitbook/images/apple-touch-icon-precomposed-152.png && cp logo/favicon.ico _book/gitbook/images",
"docs:watch": "yarn docs:prepare && gitbook serve",
"docs:publish": "yarn docs:clean && yarn docs:build && ./scripts/publish-docs",
"typecheck": "yarn typecheck:flow && yarn typecheck:ts",
"typecheck:flow": "flow check --include-warnings",
"typecheck:ts": "lerna run typecheck:ts",
"package-readme-entry": "./scripts/package-readme-entry.sh",
"changeset": "changeset",
"changeset:version-and-format": "changeset version && prettier --write --parser json '**/package.json'"
},
"workspaces": [
"integration-tests",
"packages/*"
],
"dependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-export-default-from": "7.16.0",
"@babel/plugin-proposal-export-namespace-from": "7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.0",
"@babel/plugin-proposal-object-rest-spread": "7.16.0",
"@babel/plugin-proposal-optional-chaining": "7.16.0",
"@babel/plugin-proposal-pipeline-operator": "7.16.0",
"@babel/plugin-syntax-optional-chaining": "7.8.3",
"@babel/preset-env": "7.16.4",
"@babel/preset-flow": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@changesets/changelog-github": "0.4.1",
"@changesets/cli": "2.18.0",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@rollup/plugin-alias": "3.1.8",
"@types/jest": "26.0.24",
"@types/node": "10.17.60",
"@types/node-fetch": "2.5.12",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"check-node-version": "4.2.1",
"codecov": "^3.8.3",
"commitizen": "4.2.4",
"common-tags": "1.8.2",
"cross-env": "7.0.3",
"debug": "4.3.2",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.27.0",
"flow-bin": "0.141.0",
"gitbook-cli": "daern91/gitbook-cli",
"gitbook-plugin-anchorjs": "2.1.0",
"gitbook-plugin-edit-link": "2.0.2",
"gitbook-plugin-ga": "2.0.0",
"gitbook-plugin-github": "3.0.0",
"gitbook-plugin-prism": "2.4.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-each": "26.6.2",
"jest-runner-eslint": "0.11.1",
"jest-runner-flowtype": "0.0.7",
"jest-silent-reporter": "0.5.0",
"lerna": "4.0.0",
"lint-staged": "10.5.4",
"prettier": "2.4.1",
"resolve": "1.20.0",
"rimraf": "3.0.2",
"rollup": "2.60.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-includepaths": "0.2.4",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-uglify": "6.0.4",
"rollup-watch": "4.3.1",
"streamtest": "2.0.0",
"ts-jest": "26.5.6",
"tsconfig-replace-paths": "0.0.11",
"typescript": "4.5.2"
},
"resolutions": {
"graceful-fs": "4.2.8",
"**/graceful-fs": "4.2.8",
"y18n": "3.2.2",
"lodash": "4.17.21",
"handlebars": "4.7.7",
"growl": "1.10.5",
"dot-prop": "6.0.1",
"merge": "2.1.1",
"npm-user-validate": "1.0.1",
"serialize-javascript": "6.0.0",
"diff": "5.0.0",
"object-path": "0.11.8",
"npm": "6.14.17",
"set-value": "4.0.1"
}
}