-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "webdashboard",
"version": "0.1.0",
"private": true,
"author": "ISIS Neutron and Muon Source - Experiment Controls",
"description": "The web dashboard for instruments at the ISIS Neutron and Muon Source",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"lint": "biome check",
"lint:fix": "biome check --fix",
"test": "jest",
"format": "biome format --write",
"format_check": "biome format"
},
"dependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@types/react": "19.2.14",
"@types/react-dom": "^19.2.3",
"next": "^16.2.4",
"postcss": "^8.5.10",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-use-websocket": "^4.13.0",
"tailwindcss": "^4.2.4",
"ts-node": "^10.9.2",
"typescript": "6.0.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0"
}
}