forked from playcanvas/model-viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "playcanvas-viewer",
"version": "1.0.0",
"author": "PlayCanvas<[email protected]>",
"homepage": "https://playcanvas.com",
"description": "PlayCanvas glTF Viewer",
"keywords": [
"2d",
"3d",
"html5",
"gltf",
"webgl",
"webgl2",
"viewer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/playcanvas/playcanvas-viewer/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/playcanvas/playcanvas-viewer.git"
},
"eslintConfig": {
"extends": "@playcanvas/eslint-config"
},
"devDependencies": {
"@playcanvas/eslint-config": "^1.0.6",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.3.1",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"playcanvas": "^1.32.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-conditional-loader": "^1.0.12"
},
"scripts": {
"lint": "eslint --ignore-pattern 'src/lib' --ext .js src",
"serve": "http-server . -a localhost -p 8080",
"watch": "node_modules/.bin/webpack --config webpack.config.js --watch",
"build:local": "ENVIRONMENT=production node_modules/.bin/webpack --config webpack.config.js",
"build:server": "ENVIRONMENT=production PUBLIC_PATH=/viewer/ node_modules/.bin/webpack --config webpack.config.js"
}
}