-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "dd3ok.github.io",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run validate && next build && npm run smoke",
"start": "serve out -l 3000",
"lint": "eslint . --max-warnings=0",
"smoke": "node scripts/smoke-check.mjs",
"validate": "npm run lint && npx tsc --noEmit",
"preview": "npm run build && serve out -l 3000"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.16",
"next": "^15.5.10",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-image-file-resizer": "^0.4.8",
"react-markdown": "^10.1.0",
"react-use-websocket": "^4.13.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.5.10",
"@types/node": "^20.19.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.10",
"postcss": "^8.5.4",
"serve": "^14.2.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"description": "Static-exported personal portfolio for dd3ok, built with Next.js App Router and TypeScript.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dd3ok/dd3ok.github.io.git"
},
"keywords": [],
"author": "dd3ok",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/dd3ok/dd3ok.github.io/issues"
},
"homepage": "https://github.com/dd3ok/dd3ok.github.io#readme"
}