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

99 lines
2.7 KiB
JSON

{
"name": "icynet.eu",
"version": "0.9.4",
"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://gitlab.icynet.eu/IcyNetwork/issues"
},
"homepage": "https://icynet.eu",
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.13.8",
"@babel/register": "^7.13.8",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"connect-redis": "^5.1.0",
"connect-session-knex": "^2.0.0",
"email-templates": "^8.0.3",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"express-session": "^1.17.1",
"feed": "^4.2.2",
"fs-extra": "^9.1.0",
"gm": "^1.23.1",
"json-web-token": "^3.2.0",
"knex": "^0.95.1",
"multiparty": "^4.2.2",
"mysql": "^2.18.1",
"nodemailer": "^6.5.0",
"notp": "^2.0.3",
"oauth-libre": "^0.9.17",
"objection": "^2.2.14",
"querystring-es3": "^0.2.1",
"redis": "^3.0.2",
"serve-favicon": "^2.5.0",
"stylus": "^0.54.8",
"thirty-two": "^1.0.2",
"toml": "^3.0.0",
"uuid": "^8.3.2",
"vue": "^2.6.12"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"babel-loader": "^8.2.2",
"bootstrap": "^4.6.0",
"concurrently": "^6.0.0",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.7.0",
"jquery": "^3.6.0",
"morgan": "^1.10.0",
"mustache": "^4.1.0",
"popper.js": "^1.16.1",
"pug": "^3.0.2",
"pug-plain-loader": "^1.1.0",
"standard": "^16.0.3",
"terser-webpack-plugin": "^5.1.1",
"vue-clickaway": "^2.2.2",
"vue-loader": "^15.9.6",
"vue-resource": "^1.5.2",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12",
"watch": "^1.0.2",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"standard": {
"env": {
"browser": true,
"node": true,
"jquery": true
}
}
}