-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "practicassg",
"version": "1.0.0",
"description": "La práctica 2 consistirá en realizar un juego cuyo protagonista será una copia barata de R2D2, el personaje de Star Wars.",
"main": "app.js",
"scripts": {
"dev": "set NODE_ENV=0&& webpack-dev-server --progress --color --hot --inline",
"build": "run-s clean build:dir build:js",
"clean": "rimraf build",
"build:dir": "copyfiles -u 1 src/public/**/* build/",
"build:js": "set NODE_ENV=1&& webpack --progress --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmorente/PracticasSG.git"
},
"author": "Arthur Rodríguez & Adrián Morente",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianmorente/PracticasSG/issues"
},
"homepage": "https://github.com/adrianmorente/PracticasSG#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"bower": "^1.8.4",
"copyfiles": "^2.0.0",
"file-loader": "^1.1.11",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"dat.gui": "^0.7.1",
"jquery": "^3.3.1",
"three": "^0.91.0",
"three-trackballcontrols": "0.0.7"
}
}