forked from shapediver/AppBuilderSdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.41 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
116
117
{
"name": "shapediver-app-builder",
"version": "1.0.8",
"private": true,
"type": "module",
"homepage": "./",
"dependencies": {
"@emotion/react": "^11.13.3",
"@mantine/charts": "^7.12.2",
"@mantine/core": "^7.12.2",
"@mantine/hooks": "^7.12.2",
"@mantine/notifications": "^7.12.2",
"@sentry/react": "^8.30.0",
"@sentry/vite-plugin": "^2.22.4",
"@shapediver/api.geometry-api-dto-v2": "^1.24.0",
"@shapediver/sdk.geometry-api-sdk-v2": "^1.12.2",
"@shapediver/sdk.platform-api-sdk-v1": "^2.27.1",
"@shapediver/viewer.session": "3.7.0",
"@shapediver/viewer.viewport": "3.7.0",
"@shapediver/viewer.features.drawing-tools": "3.7.0",
"@shapediver/viewer.features.gumball": "3.7.0",
"@shapediver/viewer.features.interaction": "3.7.0",
"@shapediver/viewer.utils.mime-type": "~1.1.0",
"@tabler/icons-react": "^3.17.0",
"gl-matrix": "^3.4.3",
"immer": "^10.1.1",
"plausible-tracker": "^0.3.9",
"post-robot": "^8.0.32",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-infinite-scroll-hook": "^5.0.1",
"react-markdown": "^9.0.1",
"react-router-dom": "6.26.2",
"react-scripts": "5.0.1",
"remark-directive": "^3.0.0",
"remark-gfm": "^4.0.0",
"unist-util-visit": "^5.0.0",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"optimize": "tsc && vite optimize --force",
"preview": "vite preview",
"eslint": "eslint .",
"test": "jest",
"build-appbuilder": "scripts/build-appbuilder.sh $npm_package_version",
"publish-appbuilder": "scripts/build-appbuilder.sh $npm_package_version 1",
"publish-appbuilder-latest": "scripts/build-appbuilder.sh latest 1",
"build-appbuilder-platform": "scripts/build-appbuilder-platform.sh $npm_package_version",
"publish-appbuilder-platform": "scripts/build-appbuilder-platform.sh $npm_package_version 1",
"publish-appbuilder-platform-latest": "scripts/build-appbuilder-platform.sh latest 1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@sentry/cli": "^2.36.6",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "20",
"@types/post-robot": "^10.0.6",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint-plugin-react": "^7.36.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"web-vitals": "^4.2.3"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/*.(test|spec).(ts|tsx)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}