-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.01 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.01 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
{
"name": "emberdocs",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"dev": "next dev",
"prebuild": "tsx scripts/build-search-index.ts",
"build": "next build",
"build:search": "tsx scripts/build-search-index.ts",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,mdx,json,css}\"",
"typecheck": "tsc --noEmit",
"test": "jest --passWithNoTests",
"license-check": "license-checker --onlyAllow 'MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;0BSD;ISC;LGPL-3.0-or-later;MPL-2.0;CC-BY-3.0;CC-BY-4.0;CC0-1.0;Python-2.0' --excludePrivatePackages",
"check": "npm run lint && npm run typecheck && npm run test && npm run license-check",
"db:setup": "echo \"Add database setup steps in scripts/db-setup.sh\""
},
"dependencies": {
"@types/prismjs": "^1.26.5",
"flexsearch": "^0.8.212",
"js-yaml": "^4.1.1",
"next": "^16.1.1",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.20.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@types/flexsearch": "^0.7.6",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.27",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"autoprefixer": "^10.4.23",
"eslint": "^9.15.0",
"eslint-config-next": "^16.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-checker": "^25.0.1",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}