-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
{
"name": "event-loop-explorer",
"private": true,
"author": "Albert Trott",
"version": "1.16.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"test:coverage": "jest --passWithNoTests --collectCoverage",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"prettier": "prettier --write .",
"typecheck": "tsc --noEmit --p ./tsconfig.json",
"prepare": "husky",
"commit": "cz"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-select": "^2.2.2",
"@radix-ui/react-slider": "^1.3.2",
"@radix-ui/react-slot": "^1.2.0",
"@types/eslint-scope": "^3.7.7",
"ace-builds": "^1.40.0",
"acorn": "^8.14.1",
"acorn-walk": "^8.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"eslint-scope": "^8.3.0",
"lucide-react": "^0.488.0",
"next": "15.3.1",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-ace": "^14.0.1",
"react-dom": "^19.0.0",
"tailwind-merge": "^3.2.0",
"tailwind-variants": "^1.0.0",
"tw-animate-css": "^1.2.5",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^15.3.1",
"@playwright/test": "^1.52.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"eslint-plugin-react-hooks": "^5.2.0",
"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",
"tailwindcss": "^4",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}