-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "rockson",
"version": "1.0.0",
"description": "Make rocks",
"main": "./src/app.js",
"scripts": {
"start": "watchify src/app.js -o js/app.js -t [ babelify --presets [ es2015 ] ]",
"serve": "browser-sync start --server --files '*.html, ./css/*.css, ./src/*.js' --reloadDelay 1000 --no-notify",
"go": "concurrently --kill-others \"npm run start\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "https://github.com/swiftcoder/rockson.git"
},
"keywords": [
"threejs",
"node",
"webgl",
"3D",
"es6",
"babel",
"procgen",
"rocks"
],
"author": "Tristam MacDonald",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiftcoder/rockson/issues"
},
"homepage": "https://github.com/swiftcoder/rockson#readme",
"dependencies": {
"three": "^0.85.2",
"three-orbit-controls": "^82.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browsersync": "0.0.1-security",
"concurrently": "^3.4.0",
"watchify": "^3.9.0"
}
}