This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
IcyNet.eu/package.json

91 lines
2.5 KiB
JSON

{
"name": "icynet.eu",
"version": "0.9.2",
"description": "Icy Network web server",
"main": "icynet.eu.js",
"scripts": {
"start": "node icynet.eu.js",
"test": "echo \"Error: no test specified\" && exit 1",
"css": "mkdir -p build/style && stylus -o build/style src/style/*.styl",
"css:watch": "mkdir -p build/style && stylus -w -o build/style src/style/*.styl",
"js": "webpack --config webpack.prod.js",
"js:watch": "webpack --config webpack.dev.js -w",
"watch": "concurrently --kill-others \"npm run css:watch\" \"npm run js:watch\" \"npm run start -- -d -w\"",
"clean": "rm -rf build/",
"build": "npm run clean && npm run css && npm run js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.icynet.eu/IcyNetwork/IcyNet.eu.git"
},
"keywords": [
"website",
"community",
"authentication"
],
"author": "Icy Network",
"license": "MIT",
"bugs": {
"url": "https://github.com/IcyNet/IcyNet.eu/issues"
},
"homepage": "https://github.com/IcyNet/IcyNet.eu#readme",
"dependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"connect-redis": "^3.3.3",
"connect-session-knex": "^1.4.0",
"email-templates": "^2.7.1",
"express": "^4.16.3",
"express-rate-limit": "^2.11.0",
"express-session": "^1.15.6",
"feed": "^1.1.1",
"fs-extra": "^4.0.3",
"gm": "^1.23.1",
"knex": "^0.14.6",
"multiparty": "^4.1.4",
"mysql": "^2.16.0",
"nodemailer": "^4.6.7",
"notp": "^2.0.3",
"oauth-libre": "^0.9.17",
"objection": "^0.8.9",
"pug": "^2.0.3",
"serve-favicon": "^2.5.0",
"stylus": "^0.54.5",
"thirty-two": "^1.0.2",
"toml": "^2.3.3",
"uuid": "^3.3.2",
"vue": "^2.5.16"
},
"devDependencies": {
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"bootstrap": "^4.1.2",
"concurrently": "^3.6.0",
"eslint-plugin-import": "^2.13.0",
"jquery": "^3.3.1",
"morgan": "^1.9.0",
"mustache": "^2.3.0",
"popper.js": "^1.14.3",
"standard": "^10.0.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"vue-clickaway": "^2.2.2",
"vue-loader": "^13.7.2",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.1",
"vue-template-compiler": "^2.5.16",
"watch": "^1.0.2",
"webpack": "^3.12.0",
"webpack-merge": "^4.1.3"
},
"standard": {
"env": {
"browser": true,
"node": true,
"jquery": true
}
}
}