123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "@brwong/$foldername",
- "author": "Brandon Wong <projects@brwong.net> (https://www.brwong.net/)",
- "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\""
- },
- "dependencies": {
- "babel-cli": "^6.23.0",
- "babel-core": "^6.23.1",
- "babel-loader": "^6.3.2",
- "babel-plugin-transform-object-rest-spread": "^6.20.2",
- "babel-plugin-transform-remove-console": "^6.8.0",
- "babel-plugin-transform-runtime": "^6.15.0",
- "babel-preset-env": "^1.3.2",
- "babel-preset-react": "^6.23.0",
- "cross-env": "^3.1.4",
- "react": "^15.4.2",
- "react-dom": "^15.4.2",
- "webpack": "^1.14.0"
- },
- "devDependencies": {
- "nodemon": "^1.11.0",
- "tape-promise": "^2.0.1",
- "tape": "^4.6.3"
- },
- "private": true
- }
|