-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
122 lines (122 loc) · 3.83 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "ockam-website",
"version": "1.0.0",
"private": true,
"description": "Ockam Website",
"scripts": {
"analyze": "ANALYZE=true next build",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start -p 3001",
"start:dev": "next dev -p 3001",
"start:dev:watch": "next-remote-watch ./pages/learn",
"export": "next build && next export",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:ci": "eslint .",
"prettier:check": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"prepare:hooks": "husky install",
"grammar:setup": "vale sync",
"grammar:vale": "vale src/content/**/*.mdx",
"grammar": "npm run grammar:vale",
"excalidraw-animate": "node ./bin/excalidraw-animate.js"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --cache --fix",
"prettier --write"
],
"src/content/**/*.{md,mdx}": [
"vale"
]
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.2",
"@chakra-ui/anatomy": "2.0.1",
"@chakra-ui/icons": "2.0.2",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/theme-tools": "^2.1.2",
"@code-hike/mdx": "^0.9.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "11.8.1",
"@n8tb1t/use-scroll-position": "2.0.3",
"@next/bundle-analyzer": "12.1.6",
"@react-spring/web": "^9.7.4",
"@vercel/og": "^0.5.19",
"axios": "^1.7.4",
"braces": "^3.0.3",
"chakra-ui-steps": "^2.1.0",
"chroma-js": "^2.4.2",
"codehike": "^1.0.1",
"csstype": "^3.1.2",
"fast-xml-parser": "^4.4.1",
"file-saver": "2.0.5",
"focus-visible": "5.2.0",
"framer-motion": "7.10.3",
"gray-matter": "4.0.3",
"html-react-parser": "5.0.11",
"lodash": "4.17.21",
"next": "^14.2.5",
"next-mdx-remote": "^4.2.1",
"next-remote-watch": "1.0.0",
"next-svgr": "glenngillen/next-svgr",
"nextjs-google-analytics": "^2.3.7",
"nextjs-progressbar": "0.0.16",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-google-recaptcha": "3.1.0",
"react-hook-form": "7.51.2",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.4.3",
"react-use": "^17.5.1",
"react-world-flags": "^1.6.0",
"rehype-slug": "6.0.0",
"remark-gfm": "3.0.1",
"remark-prism": "^1.3.6",
"string-replace-to-array": "^2.1.0",
"styled-components": "^5.3.9",
"tough-cookie": "^4.1.4",
"unist-util-map": "^4.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "17.0.0",
"@emotion/babel-plugin": "11.11.0",
"@emotion/babel-preset-css-prop": "^11.12.0",
"@emotion/eslint-plugin": "11.7.0",
"@next/eslint-plugin-next": "^12.1.6",
"@ocular-d/vale-bin": "^2.29.6",
"@types/chroma-js": "^2.4.1",
"@types/file-saver": "2.0.7",
"@types/node": "^22.3.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-world-flags": "^1.4.5",
"@types/remark-prism": "^1.3.4",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.1.0",
"babel-plugin-styled-components": "^2.0.7",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.57.0",
"eslint-config-eslint": "^11.0.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "9.0.11",
"lint-staged": "^15.2.9",
"next-sitemap": "4.2.3",
"prettier": "3.2.5",
"typescript": "^5.5.4",
"zod": "^3.23.8"
}
}