-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "aframe-boilerplate",
"version": "1.0.0",
"description": "A-frame Boilerplate using webpack",
"main": "app.js",
"scripts": {
"build": "webpack --mode production --host 192.168.1.173",
"start": "yarn run build && node server.js",
"server": "webpack-dev-server --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samhoudmedia/aframe-boilerplate.git"
},
"keywords": [
"a-frame",
"aframe",
"boilerplate",
"webpack"
],
"author": "Danny de Vries",
"license": "MIT",
"bugs": {
"url": "https://github.com/samhoudmedia/aframe-boilerplate/issues"
},
"homepage": "https://github.com/samhoudmedia/aframe-boilerplate#readme",
"devDependencies": {
"copy-webpack-plugin": "^5.0.4",
"debug": "^2.6.9",
"eslint": "^4.18.2",
"eslint-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"express": "^4.17.1",
"global": "^4.4.0",
"http-server": "^0.11.1",
"webpack": "^4.20.2"
},
"engines": {
"yarn": "1.x"
}
}