-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "ux4iot-react",
"version": "4.1.5",
"description": "React Hooks for ux4iot",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"repository": {
"url": "https://github.com/deviceinsight/ux4iot-react",
"type": "git"
},
"scripts": {
"start": "vite",
"preview": "vite preview",
"build-react-app": "tsc && vite build",
"build": "tsc --project tsconfig-lib.json",
"test": "jest",
"lint:fix": "eslint --ignore-path='./.gitignore' '*/**/*.{js,ts}' --quiet --fix",
"lint": "eslint --ignore-path='./.gitignore' '*/**/*.{js,ts}'",
"prettier": "prettier --ignore-path=./.gitignore --write \"{src/**/*.ts, *.ts,src/**/*.tsx, *.tsx}\""
},
"dependencies": {
"axios": "^1.7.4",
"azure-iothub": "1.14.1",
"socket.io-client": "^4.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"web-vitals": "^3.5.0"
},
"peerDependencies": {
"react": ">=16.8 || ^17.x || ^18.x",
"react-dom": ">=16.8 || ^17.x || ^18.x"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}