website/package.json
Jonathan Barrow 6d65ac3912 Stripped down and reworked pages
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
2020-03-08 22:25:38 -04:00

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"
}
}