This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.14 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
{
"name": "nft-launchpad-thirdweb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prebuild": "prisma generate",
"predev": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"tsc": "tsc --noEmit",
"lint:js": "next lint",
"lint:js-fix": "next lint --fix",
"lint:scss": "stylelint ./**/*.scss",
"lint:scss-fix": "stylelint ./**/*.scss --fix",
"lint": "npm-run-all --parallel lint:*",
"lint-fix": "npm-run-all --parallel lint:*-fix",
"prettier": "prettier --check \"**/*.@(tsx|ts|jsx|js)\"",
"prettier-fix": "prettier --write \"**/*.@(tsx|ts|jsx|js)\"",
"format": "npm-run-all --parallel tsc lint prettier",
"format-fix": "npm-run-all --parallel lint-fix prettier-fix tsc",
"test": "jest --watch",
"test:ci": "jest --ci",
"generate": "plop",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "1.0.6",
"@prisma/client": "^4.3.1",
"@rainbow-me/rainbowkit": "^0.5.1",
"@rainbow-me/rainbowkit-siwe-next-auth": "^0.1.1",
"@thirdweb-dev/react": "^2.9.7",
"@thirdweb-dev/sdk": "^2.4.8",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"ethers": "^5.7.0",
"formik": "^2.2.9",
"next": "12.2.5",
"next-auth": "^4.10.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.31.0",
"siwe": "^1.1.6",
"wagmi": "^0.6.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/properties": "^5.7.0",
"@swc/core": "^1.2.247",
"@swc/jest": "^0.2.22",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.7",
"@testing-library/dom": "^8.17.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/node": "18.7.14",
"@types/react": "18.0.18",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.2",
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tailwindcss": "^3.6.1",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"plop": "^3.1.1",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prisma": "^4.3.1",
"sass": "^1.54.8",
"stylelint": "^14.11.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^5.0.0",
"tailwindcss": "^3.1.8",
"typescript": "4.8.2",
"yarn-run-all": "^3.1.1"
},
"engines": {
"node": "^16.0.0"
}
}