forked from orabazu/threejs-dem-visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.36 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.36 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
{
"name": "threejs-es6-webpack-starter-landsat",
"version": "0.0.1",
"description": "A starter project for Three.js with support for ES6 and Webpack 4",
"main": "./src/js/index.js",
"private": true,
"scripts": {
"build": "webpack --config webpack.config.js --progress --mode production",
"ci": "yarn run test && yarn run coverage",
"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}'",
"ncu": "ncu",
"ncuu": "ncu --upgrade",
"nuke": "rimraf node_modules && rm yarn.lock",
"predeploy": "yarn build",
"test": "jest --verbose",
"static": "chromium-browser build/index.html"
},
"repository": "https://github.com/zhunor/threejs-dem-visualizer",
"author": "zhunor <ozerorhun@gmail.com>",
"license": "MIT",
"dependencies": {
"geotiff": "^1.0.0-beta.6",
"orbit-controls-es6": "2.0.0",
"three": "0.99.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.2.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "1.0.0",
"compression-webpack-plugin": "2.0.0",
"css-loader": "2.1.0",
"file-loader": "3.0.1",
"gh-pages": "2.0.1",
"html-webpack-plugin": "3.2.0",
"image-webpack-loader": "4.6.0",
"jest": "23.6.0",
"jest-dom": "3.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.11.0",
"npm-check-updates": "2.15.0",
"prettier": "1.15.3",
"rimraf": "2.6.3",
"sass-lint": "1.12.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"webpack": "4.28.3",
"webpack-bundle-analyzer": "3.0.3",
"webpack-cli": "3.2.0",
"webpack-dev-server": "3.1.14",
"webpack-glsl-loader": "1.0.1"
},
"keywords": [
"threejs",
"three.js",
"boilerplate",
"webpack",
"es6",
"babel",
"sass"
],
"bugs": {
"url": "https://github.com/zhunor/threejs-es6-webpack-starter/issues"
},
"homepage": "https://github.com/zhunor/threejs-es6-webpack-starter"
}