-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
{
"name": "lottify-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"commit": "git-cz",
"format": "prettier --write",
"type-check": "sh -c 'tsc --project tsconfig.json --pretty --noEmit'",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.9.11",
"@apollo/experimental-nextjs-app-support": "^0.10.0",
"@apollo/link-error": "^2.0.0-beta.3",
"@ducanh2912/next-pwa": "^10.2.6",
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.3",
"apollo3-cache-persist": "^0.15.0",
"axios": "^1.6.8",
"clsx": "^2.1.0",
"graphql": "^16.8.1",
"localforage": "^1.10.0",
"lottie-react": "^2.4.0",
"next": "14.2.1",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-toastify": "^10.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@commitlint/format": "^19.0.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"commitizen": "^4.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import-x": "^0.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"inquirer": "^9.2.18",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}