mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-03-21 17:24:28 -05:00
Stripped down the website to remove account managment and API handling. These features may be brought back in the future when the network goes live. A few new pages such as the Cemu and FAQ pages were added along with a finished credits list
31 lines
701 B
JSON
31 lines
701 B
JSON
{
|
|
"name": "pretendo_website",
|
|
"version": "1.0.0",
|
|
"description": "The official website for the Pretendo Network.",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"lint": "./node_modules/.bin/eslint .",
|
|
"lint-fix": "./node_modules/.bin/eslint . --fix"
|
|
},
|
|
"author": "The Pretendo Network (@PretendoNetwork)",
|
|
"authors": [
|
|
"@mrjvs",
|
|
"@jip"
|
|
],
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"colors": "^1.1.2",
|
|
"express": "^4.16.2",
|
|
"express-handlebars": "^3.0.0",
|
|
"fs-extra": "^7.0.1",
|
|
"morgan": "^1.9.1",
|
|
"showdown": "^1.9.1",
|
|
"winston": "^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.6.1",
|
|
"nodemon": "^1.18.6"
|
|
}
|
|
}
|