-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 2.29 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
{
"name": "files_3d",
"version": "0.6.0",
"description": "Adds support for different 3D file formats (e.g. .dae, .fbx, .gltf, .obj) to Nextcloud. Based on three.js.",
"main": "index.js",
"private": true,
"directories": {
"lib": "lib",
"test": "tests"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"scripts": {
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/v1r0x/files_3d.git"
},
"author": "Vinzenz Rosenkranz",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/v1r0x/files_3d/issues"
},
"homepage": "https://github.com/v1r0x/files_3d#readme",
"dependencies": {
"lil-gui": "^0.16.0",
"three": "^0.138",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^7.0.2",
"@nextcloud/eslint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.1",
"eslint": "^8.8.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.4.0",
"eslint-webpack-plugin": "^3.1.1",
"node-sass": "^7.0.1",
"sass-loader": "^12.4.0",
"stylelint": "^14.3.0",
"stylelint-webpack-plugin": "^3.1.1",
"typescript": "^4.5.5",
"vue-eslint-parser": "^8.2.0",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-merge": "^5.8.0"
}
}