This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
88 lines (88 loc) · 2.87 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
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
{
"name": "control",
"version": "1.2.0",
"private": true,
"scripts": {
"build": "yarn cache clean && rm -rf build && rm -rf public/build && remix build",
"dev": "remix dev",
"start": "remix-serve build",
"prepare": "husky install",
"postinstall": "remix setup node",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"start:local:mock:server": "PORT=5001 ts-node tests/api/server.ts",
"start:local:test": "API_URL_BACK=http://localhost:5001 API_URL_FRONT=http://localhost:5001 playwright test tests/* --headed"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@hookform/resolvers": "^2.9.7",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.92",
"@mui/material": "latest",
"@numaryhq/storybook": "^0.10.18",
"@opentelemetry/api": "^1.2.0",
"@opentelemetry/auto-instrumentations-node": "^0.34.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.33.0",
"@opentelemetry/exporter-zipkin": "^1.8.0",
"@opentelemetry/propagator-b3": "^1.8.0",
"@opentelemetry/resources": "^1.7.0",
"@opentelemetry/sdk-node": "^0.34.0",
"@opentelemetry/sdk-trace-base": "^1.7.0",
"@opentelemetry/sdk-trace-node": "^1.7.0",
"@opentelemetry/semantic-conventions": "^1.7.0",
"@remix-run/express": "^1.7.6",
"@remix-run/react": "latest",
"@remix-run/serve": "latest",
"@types/axios": "^0.14.0",
"async-mutex": "^0.4.0",
"axios": "^1.2.3",
"chart.js": "^4.1.2",
"dayjs": "^1.11.5",
"graphviz-react": "^1.2.1",
"i18next": "^21.8.16",
"lodash": "^4.17.21",
"opentelemetry-instrumentation-remix": "^0.1.2",
"react": "latest",
"react-chartjs-2": "^5.2.0",
"react-dom": "latest",
"react-hook-form": "^7.34.2",
"react-i18next": "^11.18.3",
"react-json-tree": "^0.17.0",
"react-spring": "^9.5.2",
"reactflow": "^11.6.0",
"remix": "latest",
"tiny-invariant": "^1.2.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@playwright/test": "^1.25.0",
"@remix-run/dev": "latest",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.36.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"express": "^4.18.1",
"husky": "^8.0.1",
"ts-node": "^10.9.1",
"typescript": "latest"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}