-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
97 lines (97 loc) · 3.02 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
{
"name": "mono",
"private": true,
"scripts": {
"start": "turbo run start --no-cache --filter=!sajari-sdk-docs",
"test": "turbo run test --filter=!sajari-sdk-docs -- --passWithNoTests",
"test:ci": "turbo run test:ci --filter=!sajari-sdk-docs -- --passWithNoTests",
"build": "turbo run build --filter=!sajari-sdk-docs",
"prepublish": "turbo run prepublish",
"docs": "turbo run dev --filter=sajari-sdk-docs",
"build:docs": "turbo run build --filter=sajari-sdk-docs",
"start:docs": "turbo run start --filter=sajari-sdk-docs",
"format": "prettier -c --write \"*/**\"",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"changeset": "changeset",
"release": "changeset publish",
"version": "changeset version && yarn --no-immutable"
},
"workspaces": [
"packages/*",
"docs"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,yml,yaml,ts,tsx,md,mdx}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.2.8",
"@changesets/cli": "2.13.0",
"@emotion/babel-preset-css-prop": "^10.2.1",
"@emotion/jest": "^11.1.0",
"@sajari/eslint-config": "^0.1.1",
"@svgr/rollup": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^5.0.3",
"@testing-library/user-event": "^14.0.0-beta",
"@types/classnames": "^2.2.11",
"@types/color": "^3.0.1",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.38",
"@types/react-aria-live": "2.0.0",
"@types/react-dom": "^17.0.11",
"@types/react-ranger": "^2.0.0",
"@types/react-speech-recognition": "^3.9.0",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-jest": "^26.6.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-svg-transformer": "^1.0.0",
"lint-staged": "^10.5.4",
"msw": "^0.29.0",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.1",
"regenerator-runtime": "^0.13.7",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"turbo": "^1.2.12",
"type-fest": "^0.21.2",
"typescript": "^4.5.5",
"whatwg-fetch": "^3.6.2"
},
"resolutions": {
"typescript": "^4.5.5",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"postcss": "^8.4.16"
},
"packageManager": "[email protected]"
}