forked from bitcoin-dev-project/bitcoin-dev-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.59 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
{
"name": "bitcoin-dev-project",
"version": "0.1.0",
"private": true,
"scripts": {
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:fix": "eslint --fix .",
"check-code": "npm run prettier:check && eslint .",
"compile:scripts": "rm -rf scripts && tsc --project tsconfig.scripts.json",
"fetch-issues": "node scripts/helpers/fetch-issues.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.10.3",
"@apollo/experimental-nextjs-app-support": "^0.10.1",
"@headlessui/react": "^2.0.4",
"@heroicons/react": "^2.1.3",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@radix-ui/react-icons": "^1.3.0",
"react-icons": "^4.7.1",
"clsx": "^2.0.0",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"graphql": "^16.8.1",
"lucide-react": "^0.390.0",
"next": "14.0.1",
"next-auth": "^4.24.4",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/mailchimp__mailchimp_marketing": "^3.0.20",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5.4.5"
}
}