This repository has been archived by the owner on Aug 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
{
"name": "tiny-viewer",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"test": "NODE_ENV=test jest"
},
"homepage": "https://github.com/LEMing/TinyViewer#readme",
"repository": {
"type": "git",
"url": "https://github.com/LEMing/TinyViewer.git"
},
"keywords": [
"viewer",
"3d models",
"glb",
"gltf",
"loader",
"three.js",
"react"
],
"author": "Alexey Degtyarik (LEM_ing)",
"license": "ISC",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"three": "^0.147.0"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"sass": "^1.50.0",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.17.9",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^13.5.0",
"@types/classnames": "^2.3.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.27",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.1",
"@types/three": "^0.139.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.0.6",
"babel-plugin-lodash": "^3.3.4",
"css-loader": "^6.7.3",
"jest": "^27.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"three": "^0.147.0",
"ts-loader": "^9.4.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}