26 lines
710 B
JSON
26 lines
710 B
JSON
{
|
|
"name": "app",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"js:build:main": "asbundle client/index.js public/main.js",
|
|
"dev:server": "nodemon --watch runner.mjs --watch api runner.mjs | bunyan",
|
|
"dev:client": "nodemon --watch client --exec \"npm run js:build:main\"",
|
|
"build": "npm run js:build:main",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "",
|
|
"license": "WTFPL",
|
|
"dependencies": {
|
|
"lodash": "^4.17.20",
|
|
"node-static": "^0.7.11",
|
|
"socket.io-serveronly": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"asbundle": "^2.6.1",
|
|
"bunyan-lite": "^1.0.1",
|
|
"mithril": "^2.0.4",
|
|
"nodemon": "^2.0.4"
|
|
}
|
|
}
|