--- a +++ b/modules/HTTPRequest/playground/package.json @@ -0,0 +1,45 @@ +{ + "name": "deep-playground-prototype", + "version": "2016.3.10", + "description": "", + "private": true, + "scripts": { + "clean": "rimraf dist", + "start": "npm run serve-watch", + "prep": "typings install && copyfiles analytics.js dist && catw node_modules/material-design-lite/material.min.js node_modules/d3/d3.min.js node_modules/seedrandom/seedrandom.min.js > dist/lib.js", + "build-css": "catw node_modules/material-design-lite/material.min.css styles.css > dist/bundle.css", + "watch-css": "catw node_modules/material-design-lite/material.min.css styles.css -o dist/bundle.css", + "build-html": "copyfiles index.html dist", + "watch-html": "catw index.html -o dist/index.html", + "build-js": "browserify src/playground.ts -p [tsify] | uglifyjs -c > dist/bundle.js", + "watch-js": "watchify src/playground.ts -p [tsify] -v --debug -o dist/bundle.js", + "build": "npm run prep && npm run build-js && npm run build-css && npm run build-html", + "watch": "npm run prep && concurrently \"npm run watch-js\" \"npm run watch-css\" \"npm run watch-html\"", + "serve": "http-server -p 80 dist/", + "serve-watch": "concurrently \"live-server --port=80 dist/\" \"npm run watch\"" + }, + "devDependencies": { + "concurrently": "3.1.0", + "copyfiles": "1.0.0", + "live-server": "1.1.0", + "rimraf": "2.5.4", + "typescript": "2.1.4", + "typings": "^0.7.9", + "uglify-js": "^2.6.2", + "tsify": "3.0.1", + "watchify": "3.9.0", + "http-server": "^0.9.0" + }, + "dependencies": { + "catw": "^1.0.1", + "cors": "^2.8.4", + "d3": "^3.5.16", + "material-design-lite": "^1.1.3", + "net-socket": "^1.1.0", + "npm": "^5.7.1", + "papaparse": "^4.4.0", + "seedrandom": "^2.4.2", + "three": "^0.93.0", + "uniq": "^1.0.1" + } +}