-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.78 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "cubes-aframe",
"version": "1.1.3",
"description": "",
"main": "./docs/main.js",
"scripts": {
"start": "webpack-dev-server",
"start:lan": "webpack-dev-server --host 0.0.0.0 --public 192.168.1.6:9000 --https",
"deploy": "run-s build deploy:commit deploy:version deploy:push",
"deploy:commit": "git commit -a -m \"Auto-deploy commit: $(date '+%Y-%m-%d %H:%M:%S')\"",
"deploy:version": "npm version patch",
"deploy:push": "git push",
"build": "NODE_ENV=production run-s build:clean build:wp build:git",
"build:clean": "touch docs/clean && rm -r docs/* && cp -r dist/assets docs/",
"build:wp": "webpack -p --config webpack.prod.js",
"build:git": "git add ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keeganbrown/cubes-aframe.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keeganbrown/cubes-aframe/issues"
},
"homepage": "https://github.com/keeganbrown/cubes-aframe#readme",
"dependencies": {
"@types/aframe": "^1.0.1",
"@types/ramda": "^0.27.6",
"aframe": "^1.0.4",
"aframe-geometry-merger-component": "^2.0.0",
"aframe-physics-system": "^4.0.1",
"ammo.js": "github:kripken/ammo.js#master",
"ramda": "^0.27.0"
},
"devDependencies": {
"autoprefixer": "^9.8.0",
"css-loader": "^3.5.3",
"ejs-loader": "^0.5.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"js-loader": "^0.1.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"source-map-loader": "^1.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}