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
|
{
"name": "prism-v2-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "eslint ."
},
"dependencies": {
"lucide-react": "^0.468.0",
"next": "^16.2.6",
"plotly.js": "^2.35.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-plotly.js": "^2.6.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/plotly.js": "^2.35.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-plotly.js": "^2.6.4",
"eslint": "^9.17.0",
"eslint-config-next": "^16.2.6",
"typescript": "^5.7.2"
}
}
|