-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "scenevr",
"version": "1.0.4",
"description": "Knight Lab SceneVR",
"repository": {
"type": "git",
"url": "git+https://github.com/NUKnightLab/SceneVR.git"
},
"homepage": "https://scene.knightlab.com",
"private": false,
"main": "app.js",
"dependencies": {
"gsap": "^2.0.1",
"three": "^0.93.0"
},
"devDependencies": {
"add-banner": "^1.0.0",
"adm-zip": "^0.4.11",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"chokidar": "^2.0.4",
"cssmin": "^0.4.3",
"exit-hook": "^1.1.1",
"front-matter": "^2.1.0",
"fs-extra": "^0.30.0",
"globby": "^5.0.0",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.3.0",
"http-server": "^0.11.1",
"lodash": "^4.13.1",
"ncp": "^2.0.0",
"node-sass": "^4.9.2",
"npm-run-all": "^4.1.3",
"prompt": "^1.0.0",
"rimraf": "^2.5.3",
"shelljs": "^0.7.0",
"simple-git": "^1.96.0",
"tiny-lr": "^1.1.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8",
"yamljs": "^0.2.8"
},
"scripts": {
"start": "run-p 'webpack-watch' 'watch' 'server'",
"prestart": "npm run clean && webpack --mode development && npm run compile",
"dist": "npm run clean && webpack --mode production -p && npm run compile && node tasks/minify-css.js",
"clean": "rimraf dist/",
"webpack-watch": "webpack --mode development --watch",
"watch": "node tasks/watch.js",
"server": "http-server ./dist -c-1",
"compile": "npm run templates && npm run copy && npm run sass",
"copy": "ncp src/assets/ dist/assets --stopOnErr",
"sass": "node-sass -o dist/css -q --output-style compact src/scss/",
"stage": "npm run clean && npm run dist && node tasks/stage.js",
"stage_latest": "npm run clean && npm run dist && node tasks/stage.js latest",
"stage_dev": "npm run clean && npm run dist && node tasks/stage.js dev",
"templates": "node tasks/compile-hbs.js",
"test": "echo \"Error: no test specified\" && exit 1",
"predeploy": "npm run clean && npm run dist && npm run templates"
},
"author": "",
"license": "ISC"
}