-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.68 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "nodeporter",
"version": "0.8.6",
"private": true,
"dependencies": {
"@fastify/cors": "11.3.0",
"@fontsource/press-start-2p": "5.3.0",
"@fontsource/vt323": "5.3.0",
"@kubernetes/client-node": "1.4.0",
"fastify": "5.12.0",
"next": "16.3.1",
"pino": "10.3.1",
"react": "19.2.8",
"react-dom": "19.2.8",
"styled-components": "6.5.3",
"web-vitals": "6.1.1"
},
"scripts": {
"dev": "NEXT_TELEMETRY_DISABLED=1 next dev",
"build": "NEXT_TELEMETRY_DISABLED=1 next build",
"start": "NEXT_TELEMETRY_DISABLED=1 next start",
"lint": "npm run spellcheck && npm run lint:md && eslint . && npm run lint:helm && npm run format:check",
"lint:helm": "command -v helm >/dev/null 2>&1 && helm lint ./charts/nodeporter || echo 'Helm not installed, skipping helm lint' && exit 0",
"lint:md": "markdownlint '**/*.md' --ignore node_modules --disable MD013",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"test:coverage:open": "open coverage/lcov-report/index.html",
"format": "prettier --write .",
"format:check": "prettier --check .",
"spellcheck": "cspell --exclude node_modules '**/*.{js,jsx,ts,tsx,md}'"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "Originally bootstrapped with Create React App, migrated to Fastify backend, then fully converted to Next.js with API routes and styled-components for a unified fullstack app. The migration and refactor process was performed using Windsurf and AI-powered assistance.",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "24.x"
},
"devDependencies": {
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@faker-js/faker": "10.6.0",
"@next/bundle-analyzer": "16.3.1",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "7.0.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.4",
"babel-jest": "30.4.1",
"babel-plugin-styled-components": "2.3.0",
"cspell": "10.0.1",
"eslint": "9.39.5",
"eslint-config-next": "16.3.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"globals": "17.11.0",
"identity-obj-proxy": "3.0.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-fetch-mock": "4.2.0",
"markdownlint-cli": "0.49.1",
"node-mocks-http": "1.18.1",
"pino-pretty": "13.1.3",
"prettier": "3.9.6"
}
}