forked from railwayapp/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.52 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
{
"name": "railway-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port ${PORT-3001}",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start --port ${PORT-3001}",
"clean": "rm -rf .next",
"tsc": "tsc -p .",
"generate:community-sdk": "graphql-code-generator --require tsconfig-paths/register --config src/graphql/community/generate.ts && prettier --write src/graphql/community/sdk.ts",
"generate": "prisma generate",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"migrate:status": "prisma migrate status",
"toml-reference": "node src/scripts/toml-reference.mjs"
},
"dependencies": {
"@nanostores/react": "^0.4.1",
"@next/env": "^13.2.1",
"@prisma/client": "4.10.1",
"@radix-ui/react-scroll-area": "^1.0.2",
"@tailwindcss/typography": "^0.5.9",
"classnames": "^2.3.2",
"contentlayer": "^0.3.0",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.10.4",
"fathom-client": "^3.1.0",
"graphql": "^16.8.1",
"interweave": "^13.1.0",
"meilisearch": "^0.32.3",
"nanostores": "^0.7.4",
"next": "13.2.1",
"next-contentlayer": "^0.3.0",
"next-seo": "^5.15.0",
"next-themes": "^0.2.1",
"prismjs": "^1.29.0",
"prom-client": "^15.1.0",
"react": "18.2.0",
"react-aria": "^3.5.0",
"react-dom": "18.2.0",
"react-feather": "^2.0.9",
"react-is": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^3.0.1",
"sharp": "^0.31.3",
"styled-components": "5.3.6",
"theme-custom-properties": "^1.0.0",
"tinykeys": "1.4.0",
"twin.macro": "^3.1.0",
"use-local-storage-state": "^19.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/typescript-graphql-request": "^6.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/styled-components": "^5.1.9",
"autoprefixer": "^10.2.5",
"babel-plugin-macros": "^3.1.0",
"next-sitemap": "^3.1.54",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"prisma": "4.10.1",
"remark-autolink-headings": "^7.0.1",
"remark-slug": "^7.0.1",
"tailwindcss": "^3.2.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=16.0.0"
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
}
}