-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
82 lines (82 loc) · 2.14 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
{
"name": "event-loop-explorer",
"private": true,
"author": "Albert Trott",
"version": "1.13.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prettier": "prettier --write .",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"prepare": "husky",
"commit": "cz",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@commitlint/cli": "19.6.1",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@eslint/compat": "1.2.5",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.18.0",
"@mui/icons-material": "6.4.0",
"@mui/material": "6.4.0",
"@types/eslint-scope": "3.7.7",
"@wixc3/react-board": "4.6.2",
"ace-builds": "1.37.5",
"acorn": "8.14.0",
"acorn-walk": "8.3.4",
"eslint-scope": "8.2.0",
"globals": "15.14.0",
"react": "19.0.0",
"react-ace": "13.0.0",
"react-dom": "19.0.0",
"zustand": "5.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@playwright/test": "1.49.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.2.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.7",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"@vitejs/plugin-react": "4.3.4",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "0.4.18",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.4.1",
"prettier": "3.4.2",
"semantic-release": "24.2.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"vite": "6.0.7"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}