123456789101112131415161718 |
- {
- "name": "@catallaxy/$foldername",
- "author": "Brandon Wong <wong.brandon@rcgt.com> (https://www.catallaxy.com/)",
- "version": "0.1.0",
- "scripts": {
- "test": "node test-build/main.js",
- "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",
- "watch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent\"",
- "testwatch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent && npm test\""
- },
- "private": true
- }
|