Created
January 10, 2018 16:05
-
-
Save MiguelCastillo/a3c78799e0e4876a3388271e328a381a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "test", | |
"version": "0.0.0", | |
"main": "index.js", | |
"scripts": { | |
"start": "run-p dev:* serve", | |
"build": "run-p build:*", | |
"serve": "3dub ./dist --watch --log false", | |
"build:js": "pakit src/index.js --dest dist/index.js", | |
"build:html": "cpx 'src/**/*.html' dist", | |
"build:css": "cpx 'src/style/spinner.css' dist", | |
"build:img": "cpx 'src/img/*' dist", | |
"dev:js": "npm run build:js -- --watch --minify false", | |
"dev:html": "npm run build:html -- --watch", | |
"dev:css": "npm run build:css -- --watch", | |
"dev:img": "npm run build:img -- --watch" | |
}, | |
"devDependencies": { | |
"3dub": "^1.0.0", | |
"babel-preset-es2015": "^6.18.0", | |
"babel-preset-react": "^6.16.0", | |
"cpx": "^1.5.0", | |
"eslint-plugin-react": "^6.7.1", | |
"npm-run-all": "^4.1.2", | |
"pakit": "^1.0.0" | |
}, | |
"dependencies": { | |
"react": "^15.4.1", | |
"react-dom": "^15.4.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment