forked from ariakit/ariakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.8 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
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"test": "jest",
"test:all": "yarn lint && yarn docs && yarn build && yarn type-check && yarn test && yarn website:build && yarn clean && yarn website:serve",
"coverage": "yarn test --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext js,ts,tsx",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook -o packages/website/public/storybook",
"clean": "lerna exec --scope reakit* -- yarn clean",
"build": "lerna exec --scope reakit* --concurrency 1 -- yarn build",
"build:fast": "yarn build --no-umd",
"docs": "lerna exec --scope reakit* -- yarn docs",
"website": "lerna exec --scope website -- yarn start",
"website:build": "lerna exec --scope website -- yarn build",
"website:serve": "lerna exec --scope website -- yarn serve",
"prerelease": "patch-package && yarn build",
"release": "lerna publish"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --ext js,ts,tsx --fix"
],
"{README,CHANGELOG}.md": [
"scripts/copy-statics.sh"
]
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.9.6",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/preset-env": "7.9.6",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@storybook/addon-a11y": "5.3.18",
"@storybook/react": "5.3.18",
"@testing-library/dom": "6.15.0",
"@testing-library/jest-dom": "5.3.0",
"@testing-library/react": "9.5.0",
"@testing-library/react-hooks": "3.2.1",
"@textlint/markdown-to-ast": "6.1.7",
"@types/jest": "25.2.3",
"@types/jest-axe": "3.2.2",
"@types/prop-types": "15.7.3",
"@types/storybook__react": "5.2.1",
"@types/vfile-message": "1.0.1",
"@types/wordpress__jest-console": "3.0.2",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@wordpress/jest-console": "3.6.0",
"ast-to-markdown": "0.2.2",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"babel-loader": "8.1.0",
"babel-plugin-macros": "2.8.0",
"babel-plugin-module-resolver": "4.0.0",
"chalk": "4.0.0",
"cross-spawn": "7.0.2",
"documentation": "13.0.0",
"eslint": "7.0.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-babel-module": "5.1.2",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.13.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-markdown": "1.0.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.2",
"fs-extra": "9.0.0",
"husky": "4.2.5",
"jest": "26.0.1",
"jest-axe": "3.4.0",
"jest-matcher-utils": "26.0.1",
"lerna": "3.21.0",
"lint-staged": "10.2.4",
"lodash": "4.17.15",
"md-node-inject": "1.0.0",
"open-cli": "6.0.1",
"patch-package": "6.2.2",
"prettier": "2.0.5",
"raf": "3.4.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-spring": "8.0.27",
"react-test-renderer": "16.13.1",
"reakit-test-utils": "*",
"reakit-warning": "*",
"rimraf": "3.0.2",
"rollup": "2.10.4",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-ignore": "1.0.5",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "5.3.0",
"ts-morph": "7.1.0",
"typescript": "3.9.2"
}
}