airboardgame/backend/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

2020-12-11 20:24:33 +01:00
{
"name": "airboardgame_back",
"version": "0.1.0",
"description": "Backend files for Airboardgame executed by Ricochet.js",
2020-12-11 20:24:33 +01:00
"main": "index.js",
"type": "module",
"exports": "./src/index.js",
2020-12-11 20:24:33 +01:00
"scripts": {
"watch": "webpack --config webpack.watch.js",
2021-01-30 21:49:05 +01:00
"serve": "webpack serve --config webpack.development.js",
"start": "npm run serve",
"dev": "npm run serve",
"tunnel": "webpack serve --config webpack.tunnel.js",
2021-01-30 21:49:05 +01:00
"build": "webpack --config webpack.production.js",
"all": "concurrently \"npm:ricochetjs\" \"npm:wire.io\" \"npm:watch\"",
"wire.io": "npx wire.io@latest",
"ricochetjs:pino": "ricochetjs | pino-tiny",
"ricochetjs": "ricochetjs",
"ricochet": "npm run ricochetjs"
2020-12-11 20:24:33 +01:00
},
"author": "",
"license": "ISC",
"devDependencies": {
2021-05-30 16:22:04 +02:00
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
2020-12-11 20:24:33 +01:00
"babel-loader": "^8.2.2",
2022-06-11 15:15:17 +02:00
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.2.1",
"dotenv-webpack": "^7.1.0",
"pino-tiny": "^1.1.2",
2022-10-17 15:37:26 +02:00
"ricochetjs": "^1.6.0",
2020-12-11 20:24:33 +01:00
"transform-loader": "^0.2.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
2022-06-11 15:15:17 +02:00
"webpack-dev-server": "^3.11.2",
"webpack-plugin-localtunnel": "^1.0.3"
2020-12-11 20:24:33 +01:00
},
"dependencies": {
"@seald-io/nedb": "^2.2.0",
2021-05-07 14:13:08 +02:00
"btoa": "^1.2.1",
2020-12-11 20:24:33 +01:00
"dotenv": "^8.2.0",
"mongodb": "^4.8.1",
"node-fetch": "^2.6.2"
2020-12-11 20:24:33 +01:00
}
}