humus-old/package.json

66 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2019-03-20 15:28:18 -05:00
{
2020-06-15 17:24:43 -05:00
"name": "humus",
2019-03-20 15:28:18 -05:00
"version": "1.0.0",
2020-06-15 17:24:43 -05:00
"main": "index.js",
2019-03-20 15:28:18 -05:00
"license": "MIT",
"scripts": {
2020-06-15 17:24:43 -05:00
"build:client": "SIDE=CLIENT webpack --mode production --config webpack.config.js",
"build:docker": "yarn run build:client && yarn run build:server && docker build",
"build:server": "SIDE=SERVER webpack --mode production --config webpack.config.js",
"client": "SIDE=CLIENT webpack-dev-server --verbose --disable-host-check --host humus.cha0sdev --port 8421 --mode development --config webpack.config.js",
"inspect": "node ./inspect.js",
"lint": "eslint --cache --format codeframe --ext mjs,jsx,js src test",
"server": "SIDE=SERVER webpack --watch --mode development --config webpack.config.js",
"test:client": "NODE_PRESERVE_SYMLINKS=1 SIDE=client mocha --watch",
"test:server": "NODE_PRESERVE_SYMLINKS=1 SIDE=server mocha --watch"
2019-03-20 15:28:18 -05:00
},
"dependencies": {
2019-04-15 20:02:08 -05:00
"@avocado/behavior": "1.x",
2019-03-20 15:28:18 -05:00
"@avocado/core": "1.x",
"@avocado/entity": "1.x",
"@avocado/graphics": "1.x",
"@avocado/input": "1.x",
2020-06-15 17:24:43 -05:00
"@avocado/math": "1.x",
2019-04-29 20:34:46 -05:00
"@avocado/net": "1.x",
2019-04-11 15:27:39 -05:00
"@avocado/physics": "1.x",
2019-03-20 15:28:18 -05:00
"@avocado/resource": "1.x",
"@avocado/sound": "1.x",
2019-03-20 15:28:18 -05:00
"@avocado/timing": "1.x",
2019-04-11 15:27:39 -05:00
"@avocado/topdown": "1.x",
2019-04-13 17:51:49 -05:00
"classnames": "2.2.6",
2020-06-15 17:24:43 -05:00
"contempo": "1.x",
2019-03-20 15:28:18 -05:00
"glob": "^7.1.3",
2019-05-25 07:10:08 -05:00
"immutable": "4.0.0-rc.12",
2019-04-07 14:59:55 -05:00
"immutablediff": "0.4.4",
2019-03-28 03:39:57 -05:00
"is-plain-object": "2.0.4",
2019-04-12 11:04:59 -05:00
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "4.8.3",
2020-06-15 17:24:43 -05:00
"scwp": "1.x",
"source-map-support": "^0.5.11"
},
"devDependencies": {
"@neutrinojs/airbnb": "^9.1.0",
"@neutrinojs/airbnb-base": "^9.1.0",
"@neutrinojs/copy": "^9.2.0",
"@neutrinojs/mocha": "^9.1.0",
"@neutrinojs/node": "^9.1.0",
"@neutrinojs/react": "^9.1.0",
"autoprefixer": "9.8.0",
"babel-plugin-webpack-alias": "^2.1.2",
"eslint": "^6",
"eslint-import-resolver-webpack": "^0.12.1",
"mocha": "^7",
"neutrino": "^9.1.0",
"node-sass": "4.12.0",
"node-sass-glob-importer": "5.3.2",
"postcss-loader": "3.0.0",
"raw-loader": "1.x",
"sass-loader": "7.1.0",
"v8-natives": "^1.1.0",
"webpack": "^4",
"webpack-cli": "^3",
"webpack-dev-server": "^3"
2019-03-20 15:28:18 -05:00
}
}