-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 972 Bytes
/
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
{
"name": "webgl_app",
"version": "1.0.0",
"description": "webGL app",
"main": "./dist/index.js",
"scripts": {
"start": "",
"lint": "./node_modules/.bin/eslint ./src/**/*.js --fix --cache",
"build": "webpack --config webpack.config.js",
"build:watch": ".\\node_modules\\.bin\\webpack --config webpack.config.js --watch"
},
"keywords": [
"tree.js",
"webGL"
],
"author": "patryk.nizio@gmail.com",
"license": "MIT",
"dependencies": {
"orbit-controls-es6": "^1.0.10",
"three": "^0.89.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"eslint": "^4.6.1",
"webpack": "^3.5.5",
"webpack-node-externals": "^1.6.0"
}
}