87 lines
2.0 KiB
JSON
87 lines
2.0 KiB
JSON
|
{
|
||
|
"name": "@vizonweb/backend",
|
||
|
"version": "0.2.0",
|
||
|
"description": "VIzon lottery website",
|
||
|
"private": true,
|
||
|
"main": "./dist/node/index.js",
|
||
|
"jsnext:main": "./dist/es6/index.js",
|
||
|
"module": "./dist/es6/index.js",
|
||
|
"bin": {
|
||
|
"vizonweb": "./dist/node/index.js"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build:es6": "bnr build:es6",
|
||
|
"build:node": "bnr build:node",
|
||
|
"build": "run-p build:*",
|
||
|
"clean": "rimraf build dist",
|
||
|
"start": "bnr start",
|
||
|
"lint": "eslint .",
|
||
|
"prepublishOnly": "npm run -s build"
|
||
|
},
|
||
|
"betterScripts": {
|
||
|
"start": {
|
||
|
"command": "babel-node ./src",
|
||
|
"env": {
|
||
|
"BABEL_ENV": "node"
|
||
|
}
|
||
|
},
|
||
|
"build:es6": {
|
||
|
"command": "babel --out-dir dist/es6 src/",
|
||
|
"env": {
|
||
|
"BABEL_ENV": "es6"
|
||
|
}
|
||
|
},
|
||
|
"build:node": {
|
||
|
"command": "babel --out-dir dist/node src/",
|
||
|
"env": {
|
||
|
"BABEL_ENV": "node"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "ssh://git@git.icedream.tech:2222/icedream/vizon-countdown-website.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"website",
|
||
|
"vizon",
|
||
|
"rizon",
|
||
|
"draw",
|
||
|
"countdown",
|
||
|
"backend"
|
||
|
],
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"README.md"
|
||
|
],
|
||
|
"author": "Carl Kittelberger <icedream@icedream.pw>",
|
||
|
"license": "UNLICENSED",
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.26.0",
|
||
|
"babel-eslint": "^7.2.3",
|
||
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
||
|
"babel-plugin-transform-runtime": "^6.23.0",
|
||
|
"babel-preset-env": "^1.6.0",
|
||
|
"better-npm-run": "^0.1.0",
|
||
|
"chalk": "^2.1.0",
|
||
|
"debug": "^3.0.1",
|
||
|
"eslint": "^4.5.0",
|
||
|
"eslint-config-airbnb": "^15.1.0",
|
||
|
"eslint-plugin-babel": "^4.1.2",
|
||
|
"eslint-plugin-import": "^2.7.0",
|
||
|
"eslint-plugin-json": "^1.2.0",
|
||
|
"eslint-plugin-jsx-a11y": "5.x",
|
||
|
"nodemon": "^1.11.0",
|
||
|
"npm-run-all": "^4.1.0",
|
||
|
"rimraf": "^2.6.1",
|
||
|
"slash": "^1.0.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"body-parser": "^1.17.2",
|
||
|
"express": "^4.15.4",
|
||
|
"moment-timezone": "^0.5.13",
|
||
|
"mysql": "^2.14.1",
|
||
|
"@vizonweb/frontend": "0.2.0"
|
||
|
}
|
||
|
}
|