Skip to content

Instantly share code, notes, and snippets.

@MiguelCastillo
Created January 10, 2018 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MiguelCastillo/a3c78799e0e4876a3388271e328a381a to your computer and use it in GitHub Desktop.
Save MiguelCastillo/a3c78799e0e4876a3388271e328a381a to your computer and use it in GitHub Desktop.
{
"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