forked from build-trust/ockam-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.02 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
{
"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"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterborn/"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.1",
"@chakra-ui/anatomy": "2.0.1",
"@chakra-ui/icons": "2.0.2",
"@chakra-ui/react": "^2.8.0",
"@chakra-ui/theme-tools": "2.0.2",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@n8tb1t/use-scroll-position": "2.0.3",
"@next/bundle-analyzer": "12.1.6",
"@react-spring/web": "^9.7.1",
"axios": "0.27.2",
"file-saver": "2.0.5",
"focus-visible": "5.2.0",
"gray-matter": "4.0.3",
"html-react-parser": "1.4.14",
"lodash": "4.17.21",
"next": "12.2.4",
"next-mdx-remote": "^4.2.1",
"next-remote-watch": "1.0.0",
"next-svgr": "0.0.2",
"nextjs-google-analytics": "^2.1.0",
"nextjs-progressbar": "0.0.14",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-google-recaptcha": "2.1.0",
"react-hook-form": "7.33.1",
"react-icons": "^4.9.0",
"react-intersection-observer": "^9.4.3",
"react-spring": "9.5.5",
"rehype-slug": "5.0.1",
"remark-gfm": "3.0.1",
"remark-prism": "^1.3.6",
"string-replace-to-array": "^2.1.0",
"styled-components": "^5.3.9",
"unist-util-map": "^3.1.3"
},
"devDependencies": {
"@babel/core": "7.18.2",
"@commitlint/cli": "17.0.1",
"@commitlint/config-conventional": "17.0.0",
"@emotion/babel-plugin": "11.9.2",
"@emotion/babel-preset-css-prop": "11.2.0",
"@emotion/eslint-plugin": "11.7.0",
"@next/eslint-plugin-next": "^12.1.6",
"@types/file-saver": "2.0.5",
"@types/node": "17.0.35",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.5",
"@types/react-google-recaptcha": "2.1.5",
"@types/remark-prism": "^1.3.4",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"lint-staged": "12.4.2",
"next-sitemap": "3.1.10",
"prettier": "2.6.2",
"typescript": "4.7.2"
},
"peerDependencies": {
"@masterborn/eslint-config": "0.0.14"
}
}