-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 3.26 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
{
"name": "devboost",
"description": "Boost your dev with useful tools.",
"version": "0.0.2",
"author": "Anh-Thi Dinh",
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"dev": "next dev",
"dev-turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test-coverage": "jest --coverage",
"lint": "next lint",
"check": "yarn run prettier && yarn run build",
"prettier": "prettier --write \"**/*.{tsx,ts,css,scss}\"",
"clean": "rimraf .next",
"clean-build": "yarn run clean && yarn run build",
"reinstall": "yarn run clean && rimraf node_modules && rm yarn.lock && yarn install"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.1",
"@types/node": "20.14.8",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@uiw/codemirror-themes": "^4.22.2",
"@uiw/react-codemirror": "^4.22.2",
"autoprefixer": "10.4.19",
"bson": "^6.7.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"eslint": "8.53.0",
"eslint-config-next": "14.2.4",
"fuse.js": "^7.0.0",
"jose": "^5.4.1",
"lodash": "^4.17.21",
"lorem-ipsum": "^2.0.8",
"nanoid": "^5.0.7",
"next": "^14.2.4",
"next-themes": "^0.2.1",
"papaparse": "^5.4.1",
"raw-loader": "^4.0.2",
"react": "^18.3.1",
"react-collapsed": "^4.1.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"react-toastify": "^9.1.3",
"sass": "^1.77.6",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.5.2",
"ulidx": "^2.3.0",
"uuid": "^9.0.1",
"yaml": "^2.4.5",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/papaparse": "^5.3.14",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^9.0.7",
"@types/zxcvbn": "^4.4.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-unicorn": "^49.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.7",
"rimraf": "^5.0.7",
"tailwindcss": "3.4.4"
}
}