1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-pkg/package.json

33 lines
648 B
JSON
Raw Normal View History

2017-08-10 06:06:14 +00:00
{
"name": "with-pkg",
"version": "1.0.0",
"main": "index.js",
"author": "Sergio Daniel Xalambrí <sergiodxa@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build",
"prestart": "npm run build",
"start": "NODE_ENV=production node server.js",
"predist": "npm run build",
"dist": "pkg index.js --out-dir dist"
},
"dependencies": {
"next": "^3.0.1",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"pkg": "^4.2.2"
},
"pkg": {
"assets": [
".next",
"pages"
],
"scripts": [
".next/dist/**/*.js"
]
}
}