1234567891011121314151617 |
- {
- "name": "@catallaxy/$foldername",
- "author": "Brandon Wong <wong.brandon@rcgt.com> (https://www.catallaxy.com/)",
- "version": "0.1.0",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "compile-prod": "cross-env NODE_ENV=production npm run compile",
- "compile": "npm run compile-src; npm run compile-test; npm run compile-frontend",
- "compile-both": "npm run compile-src; npm run compile-frontend",
- "compile-test": "babel test --out-dir test-build",
- "compile-src": "babel src --out-dir build",
- "compile-frontend": "webpack build/main.js build/bundle.js --module-bind 'js=babel-loader'",
- "watch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent\""
- },
- "private": true
- }
|