-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.58 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "iconish-sc",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "tsc && next lint --fix",
"test": "vitest run",
"test:all": "vitest run && npx playwright test",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"coverage": "vitest run --coverage",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --ext .ts,.tsx,.js --fix",
"prettier --write"
]
},
"dependencies": {
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.2",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.9.3",
"@codemirror/lint": "^6.4.2",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.3.3",
"@codemirror/view": "^6.22.3",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@iconify/react": "^4.1.1",
"@million/lint": "^0.0.73",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@uiw/codemirror-theme-vscode": "^4.21.21",
"@uiw/codemirror-themes": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"date-fns": "^2.30.0",
"html-react-parser": "^5.1.1",
"immer": "^10.0.3",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lodash.isobject": "^3.0.2",
"lucide-react": "^0.279.0",
"million": "^2.6.4",
"next": "13.5.2",
"next-app-theme": "^0.1.10",
"node-html-parser": "^6.1.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-stately": "^3.26.0",
"react-virtuoso": "^4.6.2",
"svgo": "^3.0.2",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"ts-deepmerge": "^6.2.0",
"usehooks-ts": "^2.9.1",
"validate-color": "^2.2.4",
"zod": "^3.22.2",
"zustand": "^4.4.6"
},
"devDependencies": {
"@playwright/experimental-ct-react": "^1.40.1",
"@playwright/test": "^1.40.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/lodash": "^4.14.202",
"@types/node": "20.6.3",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@vercel/style-guide": "^5.1.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^1.0.4",
"autoprefixer": "10.4.16",
"eslint": "8.49.0",
"eslint-config-next": "13.5.2",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-vitest": "^0.3.10",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.2.0",
"postcss": "8.4.30",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"vite": "^5.0.8",
"vitest": "^1.0.4"
}
}