forked from tempus-ex/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.92 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.92 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
{
"name": "docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_ENV=development next-remote-watch ./content",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "eslint --fix",
"test": "tsc -p . --noEmit && jest",
"format": "prettier --write './lib/**/*.ts*' './components/**/*.ts*' './pages/**/*.ts*' './aws/**/*.ts'"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@graphiql/react": "^0.19.2",
"@mantine/core": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@mantine/next": "^5.10.5",
"@mantine/prism": "^5.10.5",
"@tabler/icons": "^2.6.0",
"@tabler/icons-react": "^2.6.0",
"clsx": "^1.2.1",
"eslint": "8.34.0",
"eslint-config-next": "13.2.1",
"file-saver": "^2.0.5",
"graphiql": "^3.0.4",
"graphql": "^16.6.0",
"graphql-ws": "^5.12.0",
"hast-util-from-html-isomorphic": "^1.0.0",
"hast-util-has-property": "^2.0.1",
"hast-util-heading-rank": "^2.1.1",
"hast-util-is-element": "^2.1.3",
"hast-util-to-string": "^2.0.0",
"js-cookie": "^3.0.5",
"next": "13.2.1",
"next-mdx-remote": "^4.3.0",
"next-remote-watch": "^2.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark-code-extra": "^1.0.1",
"remark-gfm": "^3.0.1",
"swagger-ui-react": "^4.19.0",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.0",
"@types/js-cookie": "^3.0.3",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/swagger-ui-react": "^4.18.0",
"esbuild-jest": "^0.5.0",
"jest": "^29.5.0",
"jest-expect-message": "^1.1.3",
"prettier": "^2.8.8",
"sass": "^1.62.1"
},
"engines": {
"node": "^16.15.1"
}
}