-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "polkadot-education",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build-storybook": "storybook build",
"build": "next build",
"db:reset": "bun run seed/cli.ts reset",
"db:drop:all": "bun run seed/cli.ts drop:all",
"db:drop:courses": "bun run seed/cli.ts drop:courses",
"db:seed:all": "bun run seed/cli.ts seed:all",
"db:seed:courses": "bun run seed/cli.ts seed:courses",
"dev": "next dev",
"format:fix": "prettier --write .",
"format": "prettier --check .",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"start": "next start",
"storybook": "storybook dev -p 6006",
"test:open": "cypress open",
"test": "cypress run",
"type-check": "tsc --noEmit",
"wait": "wait-on http://localhost:3000"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@mdxeditor/editor": "^3.10.1",
"@next/mdx": "^14.2.5",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@talismn/connect-components": "^1.1.8",
"@types/mdx": "^2.0.13",
"axios": "^1.7.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"framer-motion": "^11.11.9",
"google-auth-library": "^9.14.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.453.0",
"next": "14.2.15",
"next-intl": "^3.20.0",
"next-mdx-remote": "^5.0.0",
"polkadot-api": "^1.3.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@eslint/js": "^9.11.1",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.3.3",
"@storybook/addon-links": "^8.3.3",
"@storybook/addon-onboarding": "^8.3.3",
"@storybook/blocks": "^8.3.3",
"@storybook/nextjs": "^8.0.6",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^8.3.3",
"@storybook/test": "^8.0.6",
"@types/cypress": "^1.1.3",
"@types/js-cookie": "^3.0.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.7.0",
"@types/react": "^18.3.9",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.0.1",
"cypress": "^13.13.1",
"eslint": "9.13.0",
"eslint-config-next": "^14.2.11",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.9.0",
"lint-staged": "^15.2.2",
"mongodb": "^6.9.0",
"postcss": "^8",
"prettier": "^3.3.3",
"storybook": "^8.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"typescript-eslint": "^8.7.0",
"wait-on": "^8.0.1"
}
}