-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "tailwind-converter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@codemirror/lang-css": "^0.20.0",
"@codemirror/lang-html": "^0.20.0",
"@codemirror/lang-javascript": "^0.20.0",
"@codemirror/theme-one-dark": "^0.20.0",
"@types/js-beautify": "^1.13.3",
"@uiw/react-codemirror": "^4.7.0",
"@vercel/analytics": "^1.0.1",
"cssjson": "^2.1.3",
"daisyui": "^2.15.0",
"js-beautify": "^1.14.3",
"lodash": "^4.17.21",
"nearest-color": "^0.4.4",
"next": "12.1.5",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.30",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"autoprefixer": "^10.4.15",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "^8.4.32",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.4.1",
"typescript": "4.6.4"
}
}