-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.57 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
{
"name": "docs-new",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"preview": "next start",
"export": "next export",
"serve": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate": "npm run lint && npm run type-check && npm run format:check",
"check": "npm run lint && npm run type-check && npm run format:check && npm run test",
"clean": "rm -rf .next out node_modules/.cache",
"clean:all": "rm -rf .next out node_modules/.cache node_modules",
"analyze": "ANALYZE=true next build"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.14.0",
"dependencies": {
"@mdx-js/react": "^3.1.0",
"next": "^15.4.6",
"nextra": "^4.3.0",
"nextra-theme-docs": "^4.3.0",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^15.4.6",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}