mirror of
https://github.com/strapi/strapi.git
synced 2025-08-06 15:53:11 +00:00
67 lines
1.7 KiB
JavaScript
Executable File
67 lines
1.7 KiB
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Module dependencies
|
|
*/
|
|
|
|
// Public node modules.
|
|
const _ = require('lodash');
|
|
|
|
/**
|
|
* Expose main package JSON of the application
|
|
* with basic info, dependencies, etc.
|
|
*/
|
|
|
|
module.exports = scope => {
|
|
const cliPkg = scope.strapiPackageJSON || {};
|
|
|
|
// Finally, return the JSON.
|
|
return _.merge(scope.appPackageJSON || {}, {
|
|
'name': scope.name,
|
|
'private': true,
|
|
'version': '0.1.0',
|
|
'description': 'A Strapi application.',
|
|
'devDependencies': {
|
|
'babel-eslint': '^7.1.1',
|
|
'eslint': '^3.12.2',
|
|
'eslint-config-airbnb': '^13.0.0',
|
|
'eslint-plugin-import': '^2.2.0',
|
|
'eslint-plugin-react': '^6.8.0'
|
|
},
|
|
'dependencies': {
|
|
'lodash': '4.x.x',
|
|
'strapi': getDependencyVersion(cliPkg, 'strapi'),
|
|
'strapi-mongoose': getDependencyVersion(cliPkg, 'strapi-mongoose')
|
|
},
|
|
'main': './server.js',
|
|
'scripts': {
|
|
'start': 'node --harmony-async-await server.js',
|
|
'strapi': 'node_modules/strapi/bin/strapi.js', // Allow to use `npm run strapi` CLI,
|
|
'lint': 'node_modules/.bin/eslint api/**/*.js config/**/*.js plugins/**/*.js'
|
|
},
|
|
'author': {
|
|
'name': scope.author || 'A Strapi developer',
|
|
'email': scope.email || '',
|
|
'url': scope.website || ''
|
|
},
|
|
'maintainers': [{
|
|
'name': scope.author || 'A Strapi developer',
|
|
'email': scope.email || '',
|
|
'url': scope.website || ''
|
|
}],
|
|
'engines': {
|
|
'node': '>= 7.0.0',
|
|
'npm': '>= 3.0.0'
|
|
},
|
|
'license': scope.license || 'MIT'
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Get dependencies version
|
|
*/
|
|
|
|
function getDependencyVersion(packageJSON, module) {
|
|
return module === packageJSON.name ? packageJSON.version : packageJSON.dependencies && packageJSON.dependencies[module];
|
|
}
|