nickpegg.com/package.json
Nick Pegg 3eedb94180 Port the Python build script over to JS
`npm run build` now builds both the site.json file and the React app.
Two new run scripts are available:

* build_site - just build the site.json file
* build_code - build the React app
2017-10-14 17:16:15 -07:00

26 lines
698 B
JSON

{
"name": "nickpegg.com",
"version": "0.1.0",
"private": true,
"dependencies": {
"highlight.js": "^9.12.0",
"js-yaml": "^3.10.0",
"mz": "^2.7.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-markdown": "^2.5.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.0.13",
"react-skeleton-css": "^1.0.2",
"slugify": "^1.2.1"
},
"scripts": {
"start": "react-scripts start",
"build_site": "scripts/build_site.js",
"build_code": "react-scripts build",
"build": "scripts/build_site.js && react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}