-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "lab-framework",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"build": "next build",
"prestart": "npm run build",
"start": "node .next/standalone/server.js",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand --watchAll=false",
"test-coverage": "jest --coverage"
},
"dependencies": {
"@pondorasti/remark-img-links": "^1.0.8",
"create-cert": "^1.0.6",
"dockerode": "^5.0.1",
"gray-matter": "^4.0.3",
"next": "^16.2.10",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-syntax-highlighter": "^16.1.1",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.6.0",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@swc/core": "^1.15.46",
"@swc/jest": "^0.2.39",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/dockerode": "^4.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^10.8.0",
"eslint-config-next": "^16.2.10",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"jest-fetch-mock": "^4.2.0",
"postcss": "^8.5.19",
"tailwindcss": "^4.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"@types/react": "19.2.18",
"@types/react-dom": "19.2.3"
}
}