-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.12 KB
/
package.json
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
{
"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",
"build": "next build",
"start": "next start",
"lint": "eslint ./",
"test": "jest",
"format": "prettier --write \"**/*.{ts,tsx,md,js,json,yml,yaml}\"",
"format_check": "prettier --check \"**/*.{ts,tsx,md,js,json,yml,yaml}\""
},
"dependencies": {
"@types/pako": "^2.0.3",
"cross-env": "^7.0.3",
"next": "^14.2.5",
"pako": "^2.1.0",
"react": "^18",
"react-dom": "^18",
"react-use-websocket": "^4.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "^14.3.1",
"@types/jest": "29.5.11",
"@types/react": "18.2.45",
"autoprefixer": "^10.0.1",
"eslint": "^8.0.0",
"eslint-config-next": "14.2.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "^8",
"prettier": "^3.3.3",
"tailwindcss": "^3.3.0",
"ts-node": "^10.9.2"
}
}