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

32 lines
630 B
JSON
Raw Normal View History

2017-08-10 06:06:14 +00:00
{
"name": "with-pkg",
"version": "1.0.0",
"bin": "index.js",
2017-08-10 06:06:14 +00:00
"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 . --out-dir dist"
2017-08-10 06:06:14 +00:00
},
"dependencies": {
2018-01-30 20:44:18 +00:00
"next": "latest",
"react": "16.2.0",
"react-dom": "16.2.0"
2017-08-10 06:06:14 +00:00
},
"devDependencies": {
"pkg": "^4.2.2"
},
"pkg": {
"assets": [
".next/**/*"
2017-08-10 06:06:14 +00:00
],
"scripts": [
".next/server/**/*.js"
2017-08-10 06:06:14 +00:00
]
}
}