-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.5 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@diamondlightsource/cs-web-lib",
"type": "module",
"version": "0.10.20",
"description": "Control system web library",
"main": "./dist/index.cjs",
"scripts": {
"rollup": "rollup -c",
"test": "vitest",
"lint": "eslint 'src/**/*.{ts,tsx}' --max-warnings=0",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --max-warnings=0 --fix",
"prettier-check": "prettier --check 'src/**/*.{ts,tsx}'",
"prettier-write": "prettier --write 'src/**/*.{ts,tsx}'",
"check-types": "tsc",
"all-checks": "npm run lint && npm run prettier-check && npm run check-types"
},
"author": "Will Rogers, Rebecca Williams, Abigail Alexander, Tom Kane, Gregory Harris",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DiamondLightSource/cs-web-lib.git"
},
"dependencies": {
"apollo-link-retry": "^2.2.16",
"bufferutil": "^4.0.8",
"loglevel": "^1.9.2",
"safe-stable-stringify": "^2.5.0",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"react-grid-layout": "^2.2.3",
"react-toastify": "^11.0.5",
"@mui/icons-material": "^7.3.7",
"@reduxjs/toolkit": "^2.11.2",
"@apollo/client": "^3.11.8",
"@emotion/styled": "^11.13.0",
"@mui/material": "^7.3.2",
"@mui/x-charts": "^9.3.0",
"@react-three/fiber": "^8.18.0",
"@rollup/plugin-commonjs": "^28",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.3.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^16.3.0",
"@types/d3": "^7.4.3",
"@types/jest": "^27.5.2",
"@types/node": "^22.9.0",
"@types/react-plotly.js": "^2.6.3",
"@types/react-test-renderer": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/typescript-estree": "^8.13.0",
"@vitejs/plugin-react": "^6.0.2",
"base64-js": "^1.5.1",
"clipboard-copy": "^4.0.1",
"d3": "^7.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"graphql-ws": "^5.16.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"react-gauge-component": "^2.0.29",
"react-id-generator": "^3.0.2",
"react-router": "^7.13.0",
"react-test-renderer": "^18.3.1",
"react-tiny-popover": "^8.1.2",
"rollup": "^4",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-preserve-directives": "^1.1.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^8.0.16",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^4.0.8",
"vitest-canvas-mock": "^0.3.3",
"vitest-websocket-mock": "^0.4.0",
"xml-js": "^1.6.11"
},
"peerDependencies": {
"@mui/icons-material": "^7.3.7",
"@reduxjs/toolkit": "^2.11.2",
"react-grid-layout": "^2.2.3",
"react-toastify": "^11.0.5",
"@mui/material": "^7.3.2",
"@mui/x-charts": "^9.3.0",
"@types/react": "^18.3.1",
"d3": "^7.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-gauge-component": "^2.0.29",
"react-redux": "^7.2.9",
"react-router": "^7.13.0"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
}
}