-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
{
"name": "rainbow-riot",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "pnpm check-format && pnpm check-lint && pnpm check-types && pnpm build",
"prepare": "husky install"
},
"dependencies": {
"colorthief": "^2.4.0",
"extract-colors": "^4.0.2",
"next": "latest",
"react": "latest",
"react-animated-cursor": "^2.10.1",
"react-dom": "latest",
"react-hot-toast": "^2.4.1"
},
"devDependencies": {
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"autoprefixer": "latest",
"daisyui": "^3.8.1",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "latest",
"prettier": "^3.0.3",
"tailwindcss": "latest",
"typescript": "latest",
"husky": "^8.0.0"
}
}