-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.59 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
89
90
91
92
93
94
95
96
97
{
"name": "bioreactor-ui",
"version": "0.1.0",
"private": true,
"homepage": "http://Hackuarium.github.io/bioreactor-ui",
"scripts": {
"start": "npm run build:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"components-update": "components-update --out src/components/tailwind-ui",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@headlessui/react": "^1.4.1",
"@lukeed/uuid": "^2.0.0",
"@popperjs/core": "^2.11.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.2.1",
"@zakodium/components-update": "^1.4.3",
"@zakodium/tailwind-config": "^2.0.3",
"byte-size": "^8.1.0",
"chart.js": "^4.2.0",
"clsx": "^1.2.1",
"date-fns": "^2.29.3",
"formik": "^2.2.9",
"legoino-device-information": "^2.2.3",
"legoino-navigator-serial": "0.0.1",
"legoino-util": "^2.0.4",
"lodash": "^4.17.21",
"ml-spectra-processing": "^11.15.0",
"mqtt-packet": "^8.1.2",
"plotly.js": "^2.18.0",
"pouchdb": "^8.0.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^11.3.4",
"react-hook-form": "^7.42.1",
"react-plot": "^1.4.2",
"react-plotly.js": "^2.6.0",
"react-popper": "^2.3.0",
"react-router-dom": "^6.8.0",
"react-scripts": "^5.0.1",
"typescript": "^4.4.3",
"web-vitals": "^3.1.1",
"webpack": "^5.75.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^8.6.0",
"gh-pages": "^5.0.0",
"postcss": "^8.3.6",
"postcss-cli": "^8.3.1",
"prettier": "^2.8.3",
"tailwindcss": "^2.2.15"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"prettier"
]
},
"prettier": {
"arrowParens": "always",
"tabWidth": 2,
"singleQuote": true,
"semi": true,
"trailingComma": "all"
},
"babel": {
"plugins": [
"@emotion"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}