mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
33 lines
648 B
JSON
33 lines
648 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": "^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"
|
||
|
]
|
||
|
}
|
||
|
}
|