-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.18 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.18 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
{
"name": "bmshell",
"version": "0.0.1",
"description": "BlueMath Shell",
"main": "index.js",
"scripts": {
"start": "http-server -p8088 -c-1",
"build-runtime": "webpack --config webpack.runtime.config.js",
"watch-runtime": "webpack --watch --config webpack.runtime.config.js",
"build-shell": "webpack --config webpack.shell.config.js",
"watch-shell": "webpack --watch --config webpack.shell.config.js",
"deploy-shell": "cp index.html runtime.html ../bluemathsoft.github.io/shell/ && cp -r build/* ../bluemathsoft.github.io/shell/build/ && cp -r ext/* ../bluemathsoft.github.io/shell/ext/ && cp -r fonts/* ../bluemathsoft.github.io/shell/fonts/ && cp -r src/* ../bluemathsoft.github.io/shell/src/ "
},
"author": "Jayesh Salvi",
"license": "Apache-2.0",
"dependencies": {
"bluemath": "^0.4.3",
"monaco-editor": "^0.10.1",
"three": "^0.87.1",
"three-orbitcontrols-ts": "github:bluemathsoft/three-orbitcontrols-ts"
},
"devDependencies": {
"@types/three": "^0.84.27",
"awesome-typescript-loader": "^3.2.3",
"http-server": "^0.10.0",
"source-map-loader": "^0.2.2",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
},
"false": {}
}