-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.8 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.8 KB
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
{
"name": "tts-react-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.18.1",
"npm": ">=10.8.2"
},
"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",
"local:build": "npm run build:tts && node ./local-build.js",
"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.28.0",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.32.0",
"@knighted/duel": "^4.0.2",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-jest": "^30.0.5",
"eslint": "^9.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"prettier": "^3.2.5",
"serve": "^14.2.6",
"ts-jest-resolver": "^2.0.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.57.2"
},
"overrides": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"test-exclude": {
"glob": "^9.3.5"
}
}
}