-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
118 lines (118 loc) · 3.4 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-3d-editor",
"version": "1.0.0",
"description": "A-frame based 3D visualization editing tool.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm install && node clean && webpack -p --config webpack.prod.js",
"start": "npm install && npm run start:dev",
"start:dev": "webpack-dev-server --colors --config webpack.dev.js --inline",
"clean": "node clean",
"tsc": "tsc",
"lint": "tslint '**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salgum1114/react-3d-editor.git"
},
"keywords": [
"antd",
"reactjs",
"aframe",
"threejs",
"typescript"
],
"author": "salgum1114@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/salgum1114/react-3d-editor/issues"
},
"homepage": "https://salgum1114.github.io/react-3d-editor/",
"dependencies": {
"aframe": "^1.0.4",
"aframe-event-set-component": "^5.0.0",
"aframe-extras": "^6.1.0",
"aframe-orbit-controls": "^1.2.0",
"antd": "^3.20.7",
"ar.js": "^2.2.2",
"classnames": "^2.2.6",
"interactjs": "^1.9.10",
"lodash": "^4.17.15",
"polestar-icons": "^0.9.64",
"pouchdb": "^7.2.1",
"qrcode": "^1.4.4",
"react": "^16.13.1",
"react-ace": "^6.3.2",
"react-color": "^2.18.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^16.13.1",
"react-dom-factories": "^1.0.2",
"react-github-corner": "^2.3.0",
"react-helmet": "^5.2.0",
"react-hot-loader": "4.12.20",
"react-json-view": "^1.19.1",
"react-split-pane": "^0.1.91",
"store": "^2.0.12",
"uuid": "^3.3.2",
"warning": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@interactjs/types": "^1.9.10",
"@types/aframe": "^0.8.4",
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/pouchdb": "^6.4.0",
"@types/qrcode": "^1.3.4",
"@types/react": "^16.9.34",
"@types/react-color": "^3.0.1",
"@types/react-custom-scrollbars": "^4.0.6",
"@types/react-dom": "^16.9.6",
"@types/react-helmet": "^5.0.15",
"@types/store": "^2.0.2",
"@types/uuid": "^3.4.4",
"@types/warning": "^3.0.0",
"@types/webpack-env": "^1.15.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.13.0",
"css-loader": "^3.5.3",
"del": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"fs-extra": "^9.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"path": "^0.12.7",
"style-loader": "^1.2.0",
"terser-webpack-plugin": "^2.3.5",
"tslint": "^6.1.1",
"tslint-react": "^5.0.0",
"typescript": "^3.8.3",
"url-loader": "^1.1.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2",
"workbox-webpack-plugin": "^5.1.3"
}
}