1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- {
- "name": "twelve-heroes",
- "version": "1.0.0",
- "description": "twelve heroes game",
- "keywords": [
- "ecosystem:cordova"
- ],
- "scripts": {
- "server": "cd server && npm start",
- "dev": "DEV=true webpack --watch",
- "prepare": "cordova prepare",
- "browser-build": "cordova build browser -- --webpackConfig webpack.config.prod.js",
- "win-build": "cordova build windows -- --webpackConfig webpack.config.prod.js --win",
- "browser": "cordova run browser -- -w webpack.config.prod.js",
- "win": "cordova run windows -- -w webpack.config.prod.js --win",
- "start": "npm-run-all --parallel server dev lint:watch",
- "start-client": "npm-run-all --parallel dev lint:watch",
- "lint": "esw webpack.config.* src --color",
- "lint:watch": "npm run lint -- --watch",
- "localtunnel": "lt --port 3000",
- "share": "npm-run-all --parallel open:src localtunnel",
- "test": "mocha --reporter progress \"src/**/*.test.js\"",
- "test:watch": "npm run test -- --watch",
- "clean": "rm -rf platforms plugins webpack www/dist www/index.html www/assets"
- },
- "author": "JOJO",
- "license": "MIT",
- "dependencies": {
- "phaser": "3.19.0",
- "socket.io-client": "^2.3.0",
- "cordova-android": "^8.1.0",
- "cordova-browser": "^6.0.0",
- "cordova-windows": "^7.0.1"
- },
- "devDependencies": {
- "@babel/cli": "7.6.2",
- "@babel/core": "^7.9.0",
- "@babel/polyfill": "7.6.0",
- "@babel/plugin-proposal-object-rest-spread": "^7.9.0",
- "@babel/preset-env": "7.6.2",
- "@babel/register": "^7.9.0",
- "are-you-es5": "^1.3.3",
- "babel-loader": "8.0.6",
- "browser-sync": "2.26.7",
- "browser-sync-webpack-plugin": "2.2.2",
- "chai": "4.2.0",
- "chalk": "2.4.2",
- "clean-webpack-plugin": "3.0.0",
- "copy-webpack-plugin": "^5.1.1",
- "cordova": "^9.0.0",
- "cordova-plugin-webpack": "^0.4.7",
- "cordova-plugin-whitelist": "^1.3.4",
- "eslint": "6.4.0",
- "eslint-plugin-import": "2.18.2",
- "eslint-watch": "6.0.1",
- "express": "^4.17.1",
- "file-loader": "4.2.0",
- "html-webpack-plugin": "3.2.0",
- "mocha": "^7.1.1",
- "npm-run-all": "4.1.5",
- "open": "6.4.0",
- "path": "0.12.7",
- "raw-loader": "3.1.0",
- "readline-sync": "1.4.10",
- "webpack": "^4.42.0",
- "webpack-cli": "^3.3.11",
- "webpack-dev-middleware": "3.7.2",
- "webpack-md5-hash": "0.0.6"
- },
- "cordova": {
- "plugins": {
- "cordova-plugin-whitelist": {},
- "cordova-plugin-webpack": {}
- },
- "platforms": [
- "browser",
- "windows"
- ]
- }
- }
|