-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.08 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
{
"name": "obsidian-tic-tac-toe",
"version": "0.1.0",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "npx jest",
"test-coverage": "npx jest --coverage",
"lint": "npx eslint src --ext .ts,.tsx --fix"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-obsidian": "3.0.0-alpha.6"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@stylistic/eslint-plugin": "^1.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/jest-when": "^3.5.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"babel-jest": "^29.7.0",
"babel-plugin-react-compiler": "beta",
"eslint": "^8.57.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-obsidian": "^3.0.0-alpha.6",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-compiler": "beta",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^3.0.4",
"jest-when": "^3.6.0",
"react-compiler-runtime": "^19.0.0-beta-8a03594-20241020",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]+sha512.2fa718fa817b36ddbeb1be69b765d64749afaf0e0d582c04359f12fbd5f7f20ec52e189a531afe2e4903d792532065711adf56e0d0f559d6461a59a703ec8b44"
}