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

52 lines
1.6 KiB
JSON

{
"name": "teemantirc",
"version": "2.0.0",
"description": "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.16.4",
"seedrandom": "^2.4.4",
"socket.io": "^2.2.0",
"toml": "^2.3.5"
},
"repository": {
"type": "git",
"url": "git://gitlab.icynet.eu/IcyNetwork/teemant.git"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"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.5",
"stylus-loader": "^3.0.2",
"webpack": "^4.28.1",
"webpack-command": "^0.4.2"
}
}