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.
teemant-old/package.json

54 lines
1.6 KiB
JSON

{
"name": "teemantirc",
"version": "2.0.2",
"description": "A Web-based IRC client",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css": "mkdir -p app/public/style && stylus -o app/public/style src/style/*.styl",
"css:watch": "mkdir -p app/public/style && stylus -w -o app/public/style src/style/*.styl",
"js": "webpack -p --config webpack.config.js",
"js:watch": "webpack -w --mode=development --config webpack.config.js",
"app": "babel src/server -d app",
"app:watch": "babel src/server -d app -w",
"build": "npm run app && npm run js && npm run css",
"watch": "concurrently --kill-others \"npm run app:watch\" \"npm run css:watch\" \"npm run js:watch\"",
"clean": "rm -rf app",
"start": "node index.js"
},
"keywords": [
"irc"
],
"author": "Evert",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"toml": "^2.3.6",
"ws": "^7.2.1"
},
"repository": {
"type": "git",
"url": "git://gitlab.icynet.eu/IcyNetwork/teemant.git"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"standard": "^12.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"seedrandom": "^2.4.4"
}
}