2016-09-22 15:41:37 +00:00
|
|
|
{
|
|
|
|
"name": "teemantirc",
|
2019-01-09 17:26:09 +00:00
|
|
|
"version": "2.0.0",
|
2016-09-30 10:37:35 +00:00
|
|
|
"description": "Web-based IRC client",
|
2019-01-09 20:47:21 +00:00
|
|
|
"main": "index.js",
|
2016-09-22 15:41:37 +00:00
|
|
|
"scripts": {
|
2019-01-09 20:47:21 +00:00
|
|
|
"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"
|
2016-09-22 15:41:37 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"irc"
|
|
|
|
],
|
|
|
|
"author": "Evert",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2019-01-09 17:26:09 +00:00
|
|
|
"express": "^4.16.4",
|
2019-01-09 20:47:21 +00:00
|
|
|
"seedrandom": "^2.4.4",
|
2019-01-09 17:26:09 +00:00
|
|
|
"socket.io": "^2.2.0",
|
|
|
|
"toml": "^2.3.5"
|
2016-12-15 21:30:55 +00:00
|
|
|
},
|
2016-09-22 15:41:37 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-01-09 17:26:09 +00:00
|
|
|
"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",
|
2019-01-09 20:47:21 +00:00
|
|
|
"concurrently": "^4.1.0",
|
|
|
|
"copy-webpack-plugin": "^4.6.0",
|
2019-01-09 17:26:09 +00:00
|
|
|
"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",
|
2019-01-09 20:47:21 +00:00
|
|
|
"stylus": "^0.54.5",
|
2019-01-09 17:26:09 +00:00
|
|
|
"stylus-loader": "^3.0.2",
|
|
|
|
"webpack": "^4.28.1",
|
|
|
|
"webpack-command": "^0.4.2"
|
2016-09-22 15:41:37 +00:00
|
|
|
}
|
|
|
|
}
|