forked from dhruvpatidar359/nextdraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.33 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
{
"name": "nextdrawv2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "npx eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"test-all": " npm run check-format && npm run test && npm run check-lint "
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@reduxjs/toolkit": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vercel/analytics": "^1.2.2",
"async-mutex": "^0.4.1",
"canvas-record": "^5.0.0",
"canvas2svg": "^1.0.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"global": "^4.4.0",
"lodash": "^4.17.21",
"lucide-react": "^0.323.0",
"next": "^14.1.1",
"perfect-freehand": "^1.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-redux": "^9.0.4",
"redux": "^5.0.1",
"roughjs": "^4.6.6",
"socket.io-client": "^4.7.4",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"use-font-face-observer": "^1.2.1",
"vaul": "^0.9.0"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.2.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"eslint --fix"
]
}
}