Added some useful webpack node-packages
This commit is contained in:
parent
613dd1bb4a
commit
2ec59c5b21
1 changed files with 37 additions and 0 deletions
37
package.json
37
package.json
|
@ -4,6 +4,43 @@
|
||||||
"description": "FFTCG online using Socket.IO and CraftyJS on Node.js on Docker",
|
"description": "FFTCG online using Socket.IO and CraftyJS on Node.js on Docker",
|
||||||
"author": "JMM <jmm@yavook.de>",
|
"author": "JMM <jmm@yavook.de>",
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
|
"private": true,
|
||||||
|
"license": "UNLICENSED",
|
||||||
|
"scripts": {
|
||||||
|
"build": "webpack",
|
||||||
|
"start": "node server.js",
|
||||||
|
"watch": "yarn start & webpack --watch",
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"css-loader": "^1.0.1",
|
||||||
|
"postcss-loader": "^3.0.0",
|
||||||
|
"sass-loader": "^7.1.0",
|
||||||
|
"style-loader": "^0.23.1",
|
||||||
|
|
||||||
|
"autoprefixer": "^9.3.1",
|
||||||
|
"node-sass": "^4.10.0",
|
||||||
|
"precss": "^3.1.2",
|
||||||
|
"webpack": "^4.25.1",
|
||||||
|
"webpack-cli": "^3.1.2",
|
||||||
|
|
||||||
|
"bootstrap": "^4.1.3",
|
||||||
|
"jquery": "^3.3.1",
|
||||||
|
"moment": "^2.22.2",
|
||||||
|
"popper.js": "^1.14.5"
|
||||||
|
},
|
||||||
|
|
||||||
|
"dependencies": {
|
||||||
|
"bcrypt": "*",
|
||||||
|
"coffeescript": "^2.3.2",
|
||||||
|
"express": "^4.16.4",
|
||||||
|
"helmet": "*",
|
||||||
|
"mysql": "*",
|
||||||
|
"socket.io": "^2.1.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node server.js"
|
"start": "node server.js"
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue