-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "threejs-gltf-model-texture-customizer",
"description": "Load glf model and customize it's textures",
"author": "Peter Skoldebring",
"homepage": "https://github.com/superpills",
"repository": "",
"version": "5.0.0",
"main": "./src/js/index.js",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn prebuild && webpack --config webpack.config.js --progress --mode production",
"ci": "yarn test && yarn coverage && yarn build",
"coverage": "codecov",
"deploy": "gh-pages -d build",
"dev": "webpack-dev-server --config webpack.config.js --mode development --open",
"format": "prettier --write '{,!(node_modules)/}**/*.{js,jsx}'",
"lint:css": "stylelint --config .stylelintrc.json --formatter verbose './src/**/*.{css,js,jsx,ts,tsx}'",
"ncu": "ncu",
"ncuu": "ncu --upgrade",
"nuke": "rimraf node_modules && rm yarn.lock",
"prebuild": "yarn lint:css",
"predeploy": "yarn test && yarn build",
"static": "chromium-browser build/index.html",
"stats": "webpack-bundle-analyzer build/stats.json --port 8888",
"test": "jest --verbose --no-cache"
},
"dependencies": {
"dat.gui": "^0.7.6",
"gltf-loader-2": "0.0.3",
"on-change": "^1.6.2",
"orbit-controls-es6": "2.0.0",
"three": "^0.108.0",
"three.interaction": "0.2.2",
"three.texttexture": "^20.0.0"
},
"devDependencies": {
"@babel/core": "7.3.4",
"@babel/preset-env": "7.3.4",
"@packtracker/webpack-plugin": "2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.1.0",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "2.0.0",
"compression-webpack-plugin": "2.0.0",
"css-loader": "2.1.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "4.6.0",
"jest": "24.1.0",
"jest-dom": "3.1.2",
"mini-css-extract-plugin": "0.5.0",
"npm-check-updates": "2.15.0",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"style-loader": "0.23.1",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
"webpack": "4.29.6",
"webpack-bundle-analyzer": "3.1.0",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.2.1",
"webpack-glsl-loader": "1.0.1"
},
"keywords": [
"babel",
"boilerplate",
"es6",
"threejs",
"three.js",
"webpack",
"webgl"
],
"bugs": {
"url": ""
}
}