-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "iot-lab-for-beginners",
"version": "1.1.0",
"author": "Jio Gim <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"broker-v2": "tsx ./broker/v2/main.ts",
"broker-v2-mock": "tsx ./broker/v2/main-mock.ts",
"broker-v1": "tsx ./broker/v1/main.ts",
"broker-v1-mock": "tsx ./broker/v1/main-mock.ts",
"init": "tsx ./example/init-for-students.ts"
},
"engines": {
"node": ">=16.0.0"
},
"type": "module",
"dependencies": {
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"@serialport/parser-delimiter": "^12.0.0",
"@types/js-yaml": "^4.0.5",
"@types/lowdb": "^1.0.11",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"async-mutex": "^0.3.2",
"atob": "^2.1.2",
"axios": "^0.26.1",
"csstype": "^3.0.11",
"js-yaml": "^4.1.0",
"lowdb": "^3.0.0",
"moment": "^2.29.1",
"next": "^12.1.0",
"onnxruntime-node": "^1.10.0",
"pino": "^7.8.1",
"pino-pretty": "^10.2.3",
"react": "^17.0.2",
"react-app": "^1.1.2",
"react-dom": "^17.0.2",
"sass": "^1.49.9",
"serialport": "^12.0.0",
"tsx": "^4.19.0",
"typescript": "^4.6.2",
"webpack": "^5.70.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0"
}
}