nfp_sites/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2016-01-26 19:12:49 +00:00
{
"name": "nfp_moe",
2019-02-19 10:26:34 +00:00
"version": "2.0.0",
2016-01-26 19:12:49 +00:00
"description": "NFP Moe website",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
2019-02-19 11:34:52 +00:00
"lint": "eslint .",
"start": "node --experimental-modules index.mjs",
2019-02-20 16:10:37 +00:00
"build": "sass app/app.scss public/assets/app.css && browserify -d app/index.js -o public/assets/app.js",
2019-02-19 11:34:52 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"watch:api": "nodemon --experimental-modules index.mjs | bunyan",
2019-02-20 16:10:37 +00:00
"watch:app": "watchify -d app/index.js -o public/assets/app.js",
"watch:sass": "sass --watch app/app.scss public/assets/app.css",
2019-02-19 11:34:52 +00:00
"dev": "run-p watch:api watch:app watch:sass",
"prod": "npm run build && npm start"
2016-01-26 19:12:49 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/nfp-projects/nfp_moe.git"
},
"author": "Jonatan Nilsson",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/nfp-projects/nfp_moe/issues"
},
"homepage": "https://github.com/nfp-projects/nfp_moe",
"dependencies": {
2019-02-19 11:34:52 +00:00
"@koa/cors": "^2.2.3",
"bookshelf": "^0.14.2",
"bunyan-lite": "^1.0.1",
"format-link-header": "^2.1.0",
2019-02-20 16:10:37 +00:00
"googleapis": "^37.2.0",
2019-02-19 11:34:52 +00:00
"http-errors": "^1.7.2",
"jsonwebtoken": "^8.4.0",
"knex": "^0.16.3",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"lodash": "^4.17.11",
"multer": "^1.4.1",
"nconf": "^0.10.0",
"pg": "^7.8.0",
2019-02-22 14:53:43 +00:00
"sharp": "^0.21.3",
"socks5-http-client": "^1.0.4"
2016-01-26 19:12:49 +00:00
},
"devDependencies": {
2019-02-19 11:34:52 +00:00
"browserify": "^16.2.3",
"eslint": "^5.14.1",
"mithril": "^2.0.0-rc.4",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"sass": "^1.17.0",
"watchify": "^3.11.0"
2016-01-26 19:12:49 +00:00
}
}