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
2018-01-30 21:46:15 +01:00

33 lines
646 B
JSON

{
"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": "latest",
"react": "16.2.0",
"react-dom": "16.2.0"
},
"devDependencies": {
"pkg": "^4.2.2"
},
"pkg": {
"assets": [
".next",
"pages"
],
"scripts": [
".next/dist/**/*.js"
]
}
}