-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 KB
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": "bootstrap-dapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress": "cypress open",
"test:e2e": "start-server-and-test dev http://localhost:3000 \"cypress open --e2e\"",
"test:e2e:headless": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"test:component": "cypress open --component",
"test:component:headless": "cypress run --component"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@heroicons/react": "^2.0.17",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.0",
"@react-three/fiber": "^8.13.0",
"@tailwindcss/forms": "^0.5.3",
"@types/glob": "^8.1.0",
"@types/node": "18.16.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/three": "^0.150.2",
"autoprefixer": "10.4.14",
"bignumber.js": "^9.1.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.7",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"ethers": "^5",
"gray-matter": "^4.0.3",
"next": "13.3.1",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"reading-time": "^1.5.0",
"remark": "^14.0.2",
"remark-html": "^15.0.2",
"sass": "^1.62.1",
"start-server-and-test": "^2.0.0",
"tailwindcss": "3.3.2",
"three": "^0.152.0",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.0.4",
"viem": "^1.3.0",
"wagmi": "^0.12.12"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/nextjs": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/testing-library": "^0.0.14-next.2",
"cypress": "^12.17.1",
"eslint-plugin-storybook": "^0.6.12",
"storybook": "^7.0.27"
}
}