-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"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.1.18",
"@types/react": "19.2.7",
"@types/react-dom": "^19.2.3",
"next": "^16.0.10",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.3",
"react-snowfall": "^2.4.0",
"react-use-websocket": "^4.13.0",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"typescript": "5.9.3"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.2.0"
}
}