forked from ariakit/ariakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.73 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": "root",
"private": true,
"scripts": {
"start": "npm start -w website",
"react17": "npm i --no-save react@17 react-dom@17 @testing-library/react@12",
"dev": "npm run dev -w website",
"dev-react17": "npm run react17 && npm run dev; npm i",
"test": "jest",
"test-watch": "npm test -- --watch",
"test-react17": "npm run react17 && npm test; npm i",
"test-chrome": "playwright test --project=chrome",
"test-chrome-browser": "cross-env HEADED=true npm run test-chrome --",
"test-chrome-debug": "npm run test-chrome-browser -- --debug",
"test-safari": "playwright test --project=safari",
"test-safari-browser": "cross-env HEADED=true npm run test-safari --",
"test-safari-debug": "npm run test-safari-browser -- --debug",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --ext js,ts,tsx",
"lint-css": "stylelint '**/*.css' --ignore-path .gitignore",
"type-check": "tsc --noEmit",
"build": "lerna exec --scope ariakit* -- npm run build",
"build-website": "npm run build --prefix packages/website",
"clean": "npm run clean -ws --if-present",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"lerna": {
"version": "independent"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --ext js,ts,tsx --fix",
"*.css": "stylelint --fix"
},
"devDependencies": {
"@babel/core": "7.18.0",
"@babel/preset-env": "7.18.0",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@changesets/cli": "2.22.0",
"@jest/types": "28.1.0",
"@playwright/test": "1.22.2",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "4.0.0",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.2.0",
"@types/jest-axe": "3.5.3",
"@types/lodash": "4.14.182",
"@types/marked": "4.0.3",
"@types/node": "17.0.17",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/tailwindcss": "3.0.10",
"@types/textarea-caret": "3.0.1",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"babel-plugin-module-resolver": "4.1.0",
"chalk": "4.1.2",
"cross-env": "7.0.3",
"cross-spawn": "7.0.3",
"eslint": "8.16.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.2.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"fs-extra": "10.1.0",
"husky": "8.0.1",
"jest": "28.1.0",
"jest-axe": "6.0.0",
"jest-environment-jsdom": "28.1.0",
"jest-fail-on-console": "2.4.1",
"jest-matcher-utils": "28.1.0",
"lerna": "4.0.0",
"lint-staged": "12.4.1",
"lodash": "4.17.21",
"marked": "4.0.16",
"open-cli": "7.0.1",
"postcss": "8.4.14",
"postcss-combine-duplicated-selectors": "10.0.3",
"postcss-import": "14.1.0",
"postcss-loader": "7.0.0",
"postcss-merge-selectors": "0.0.6",
"postcss-prettify": "0.3.4",
"postcss-value-parser": "4.2.0",
"prettier": "2.6.2",
"raw-loader": "4.0.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "4.3.1",
"react-router-dom": "6.3.0",
"rehype-parse": "8.0.4",
"rimraf": "3.0.2",
"rollup": "2.74.1",
"rollup-plugin-terser": "7.0.2",
"stylelint": "14.8.3",
"stylelint-config-standard": "25.0.0",
"tailwindcss": "3.0.24",
"textarea-caret": "3.1.0",
"typescript": "4.6.4",
"unified": "10.1.2",
"unist-util-visit": "4.1.0",
"use-isomorphic-layout-effect": "1.1.2",
"webpack": "5.72.1"
}
}