-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2 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
{
"name": "placeholder-image-maker",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "next lint --fix && prettier '**/*.{json,yaml}' --write \"src/**/*.{ts,tsx}\" --ignore-path .gitignore",
"clean": "rimraf .next .swc out coverage",
"build:prod": "run-s clean build",
"typecheck": "tsc --noEmit --incremental false"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@vercel/analytics": "^1.1.2",
"@vercel/speed-insights": "^1.0.9",
"axios": "^1.6.7",
"classnames": "^2.5.1",
"color": "^4.2.3",
"crypto-js": "^4.2.0",
"font-color-contrast": "^11.1.0",
"jszip": "^3.10.1",
"next": "^14.1.1",
"nextjs-google-analytics": "^2.3.3",
"react": "^18",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-icons": "^5.0.1",
"react-perfect-scrollbar": "^1.5.8",
"react-tooltip": "^5.26.0",
"sharp": "^0.33.2",
"validate-color": "^2.2.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/color": "^3.0.6",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18.17.0"
}
}