-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.96 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
{
"name": "tts-react-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=18.16.0",
"npm": ">=9.5.1"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"precheck-types": "npm run build:tts",
"check-types": "npm run check-types --workspaces",
"build:tts": "npm run build -w tts-react",
"prebuild:story": "npm run build:tts",
"build:story": "npm run build -w story",
"prestory": "npm run build:tts",
"story": "npm run start -w story",
"lint": "eslint packages/**/{src,__tests__}/**/*.{ts,tsx}",
"lint:fix": "eslint --fix packages/**/{src,__tests__}/**/*.{ts,tsx}",
"prettier": "prettier --no-error-on-unmatched-pattern --write *.ts packages/**/{src,__tests__}/**/*.{ts,tsx}"
},
"devDependencies": {
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@eslint/js": "^9.5.0",
"@knighted/duel": "^2.0.0-rc.1",
"@knighted/dump": "^1.0.3",
"@testing-library/dom": "^10.3.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@vitejs/plugin-react": "^4.2.1",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"globals": "^15.6.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest-resolver": "^2.0.1",
"types-react": "^19.0.0-rc.1",
"types-react-dom": "^19.0.0-rc.1",
"typescript": "^5.5.2",
"typescript-eslint": "^8.0.0-alpha.39"
},
"overrides": {
"react": "^19.0.0-rc.0",
"react-dom": "^19.0.0-rc.0",
"tough-cookie": "^5.0.0-rc.3",
"whatwg-url": "^14.0.0"
}
}