-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.15 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "interclip",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn generate && next dev",
"build": "yarn generate --data-proxy && next build",
"build:local": "yarn generate && next build",
"postbuild": "next-sitemap",
"generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --preview-feature",
"prisma:expired": "ts-node prisma/deleteExpired.ts",
"prisma:seed": "ts-node prisma/seed.ts",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prettier:check": "prettier --check \"./src/**/*.{ts,tsx}\"",
"pretty": "prettier --write ."
},
"dependencies": {
"@davatar/react": "^1.10.3",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^1.0.6",
"@next-auth/prisma-adapter": "^1.0.3",
"@nextui-org/react": "^1.0.2-beta.5",
"@prisma/client": "^4.5.0",
"@types/react-infinite-scroller": "^1.2.3",
"aws-sdk": "^2.1246.0",
"clsx": "^1.1.1",
"datatransfer-files-promise": "^1.3.1",
"dayjs": "^1.11.6",
"eth-sig-util": "^3.0.1",
"ethers": "^5.7.2",
"faker": "^5.5.3",
"fetch-blob": "^3.1.5",
"framer-motion": "^6.3.11",
"ioredis": "^5.0.6",
"js-cookie": "^3.0.1",
"link-preview-js": "^2.1.15",
"lru-cache": "^7.14.1",
"nanoid": "^4.0.0",
"next": "^12.3.1",
"next-auth": "^4.14.0",
"next-pwa": "^5.5.5",
"next-seo": "^5.4.0",
"next-themes": "^0.2.0",
"nextjs-progressbar": "^0.0.16",
"node-fetch": "2.6.7",
"octokit": "^1.8.0",
"random-youtube-music-video": "^1.0.6",
"react": "18.2.0",
"react-dom": "18.1.0",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.4.0",
"react-infinite-scroller": "^1.2.6",
"react-qr-code": "^2.0.7",
"react-spinners": "^0.12.0",
"react-tooltip": "^4.2.21",
"sharp": "^0.30.6",
"simple-xml-to-json": "^1.0.9",
"ts-node": "^10.8.1",
"validator": "^13.7.0",
"web3": "^1.7.3",
"web3.storage": "4.2.0",
"webtorrent": "^1.8.32"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/aws-sdk": "^2.7.0",
"@types/cli-progress": "^3.11.0",
"@types/faker": "^5.5.9",
"@types/js-cookie": "^3.0.2",
"@types/lru-cache": "^7.10.10",
"@types/node-fetch": "^3.0.3",
"@types/react": "18.0.21",
"@types/validator": "^13.7.3",
"@types/webtorrent": "^0.109.3",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"autoprefixer": "^10.4.8",
"cli-progress": "^3.11.1",
"eslint": "^8.18.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"prisma": "^4.5.0",
"tailwindcss": "^3.1.3",
"typescript": "4.7.4"
},
"nextBundleAnalysis": {
"budget": null,
"budgetPercentIncreaseRed": 20,
"showDetails": true
}
}