-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "@team-plain/docs",
"version": "0.0.1",
"description": "Plain.com's Documentation",
"scripts": {
"dev": "rm -r ./.next; next dev --port=4100",
"build": "next build",
"start": "next start",
"lint": "pnpm run lint:eslint && pnpm run lint:prettier && pnpm run lint:filenames",
"lint:eslint": "eslint . -c .eslintrc --ext tsx,ts,md,mdx,js",
"lint:prettier": "prettier --check './**/*.{js,ts,tsx,md,mdx}'",
"lint:filenames": "node scripts/lint-file-names.js",
"typecheck": "tsc",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-plain/docs.git"
},
"bugs": {
"url": "https://github.com/team-plain/docs/issues"
},
"homepage": "https://docs.plain.com",
"dependencies": {
"clsx": "1.2.1",
"next": "13.0.6",
"nextra": "2.10.0",
"nextra-theme-docs": "2.10.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.11.10",
"@types/react": "18.2.7",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-mdx": "2.1.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"glob": "10.2.7",
"prettier": "2.8.8",
"typescript": "4.9.3"
}
}