forked from drizzle-team/drizzle-orm-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.08 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
{
"name": "nextra-docs-template",
"version": "0.0.1",
"description": "Nextra docs template",
"scripts": {
"dev": "next dev -p 3000",
"build": "next build && next export",
"build-cl": "npx @cloudflare/next-on-pages --experimental-minify",
"start": "next start",
"copytype": "./scripts/generate_types.sh",
"types": "rollup --plugin rollup-plugin-dts --format=es --file='mytypes.d.ts' -- ./node_modules/drizzle-orm/column.d.ts"
},
"types": "./my-library.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/shuding/nextra-docs-template.git"
},
"author": "Shu Ding <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shuding/nextra-docs-template/issues"
},
"homepage": "https://github.com/shuding/nextra-docs-template#readme",
"dependencies": {
"@monaco-editor/react": "^4.4.6",
"better-sqlite3": "^8.2.0",
"drizzle-orm": "^0.23.8",
"monaco-editor": "^0.37.0",
"mysql2": "^3.2.0",
"next": "13.0.6",
"next-themes": "^0.2.1",
"nextra": "2.3.0",
"nextra-theme-docs": "2.3.0",
"postgres": "^3.3.4",
"prism-react-renderer": "^1.3.5",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-inlinesvg": "^3.0.2",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-visualizer": "^5.9.0",
"simplebar": "^6.2.0",
"simplebar-react": "^3.2.0",
"sql-formatter": "^12.2.0",
"typescript": "^5.0.4"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^0.2.0",
"@types/node": "18.11.10",
"@types/react": "^18.0.27",
"@types/simplebar": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.23.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.3.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0"
}
}