mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-16 14:28:36 +02:00
This may seem unnecessary (and odd to import CSS files into JS...), but this sets up the project for being able to keep the distributed (release) resources all together, as well as setting the stage for introducing something like SCSS.
103 lines
3.0 KiB
JSON
103 lines
3.0 KiB
JSON
{
|
|
"author": {
|
|
"name": "Daniel Xie"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/danielyxie/bitburner/issues"
|
|
},
|
|
"dependencies": {
|
|
"acorn": "^5.0.0",
|
|
"acorn-dynamic-import": "^2.0.0",
|
|
"ajv": "^5.1.5",
|
|
"ajv-keywords": "^2.0.0",
|
|
"async": "^2.6.1",
|
|
"bluebird": "^3.5.1",
|
|
"brace": "^0.11.1",
|
|
"decimal.js": "7.2.3",
|
|
"enhanced-resolve": "^4.0.0",
|
|
"escope": "^3.6.0",
|
|
"file-saver": "^1.3.8",
|
|
"interpret": "^1.0.0",
|
|
"jquery": "^3.3.1",
|
|
"json-loader": "^0.5.4",
|
|
"jsplumb": "^2.6.8",
|
|
"jszip": "^3.1.5",
|
|
"loader-runner": "^2.3.0",
|
|
"loader-utils": "^1.1.0",
|
|
"memory-fs": "~0.4.1",
|
|
"numeral": "2.0.6",
|
|
"sprintf-js": "^1.1.1",
|
|
"tapable": "^1.0.0",
|
|
"uglifyjs-webpack-plugin": "^1.2.5",
|
|
"uuid": "^3.2.1",
|
|
"w3c-blob": "0.0.1"
|
|
},
|
|
"description": "A cyberpunk-themed incremental game",
|
|
"devDependencies": {
|
|
"beautify-lint": "^1.0.3",
|
|
"benchmark": "^2.1.1",
|
|
"bundle-loader": "~0.5.0",
|
|
"chai": "^4.1.2",
|
|
"chai-as-promised": "^7.1.1",
|
|
"css-loader": "^0.28.11",
|
|
"es6-promise-polyfill": "^1.1.1",
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-node": "^6.0.1",
|
|
"file-loader": "^1.1.11",
|
|
"i18n-webpack-plugin": "^1.0.0",
|
|
"istanbul": "^0.4.5",
|
|
"js-beautify": "^1.5.10",
|
|
"json5": "^1.0.1",
|
|
"less": "^3.0.4",
|
|
"less-loader": "^4.1.0",
|
|
"lodash": "^4.17.10",
|
|
"mini-css-extract-plugin": "^0.4.1",
|
|
"mkdirp": "^0.5.1",
|
|
"mocha": "^3.2.0",
|
|
"mocha-lcov-reporter": "^1.0.0",
|
|
"nsp": "^3.2.1",
|
|
"raw-loader": "~0.5.0",
|
|
"script-loader": "~0.7.0",
|
|
"should": "^11.1.1",
|
|
"simple-git": "^1.96.0",
|
|
"sinon": "^2.3.2",
|
|
"source-map": "^0.7.3",
|
|
"style-loader": "^0.21.0",
|
|
"stylelint": "^9.2.1",
|
|
"stylelint-declaration-use-variable": "^1.6.1",
|
|
"stylelint-order": "^0.8.1",
|
|
"ts-loader": "^4.4.1",
|
|
"tslint": "^5.10.0",
|
|
"typescript": "^2.9.2",
|
|
"url-loader": "^1.0.1",
|
|
"watchpack": "^1.6.0",
|
|
"webpack": "^4.12.0",
|
|
"webpack-cli": "^3.0.4",
|
|
"webpack-dev-middleware": "^3.1.3",
|
|
"webpack-dev-server": "^3.1.4",
|
|
"worker-loader": "^2.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=4.3.0 <5.0.0 || >=5.10"
|
|
},
|
|
"homepage": "https://github.com/danielyxie/bitburner",
|
|
"license": "SEE LICENSE IN license.txt",
|
|
"name": "bitburner",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/danielyxie/bitburner.git"
|
|
},
|
|
"scripts": {
|
|
"start:dev": "webpack-dev-server",
|
|
"build": "webpack --mode production",
|
|
"build:dev": "webpack --mode development",
|
|
"lint": "npm run lint:typescript & npm run lint:javascript & npm run lint:style",
|
|
"lint:javascript": "eslint *.js ./src/**/*.js ./tests/**/*.js ./utils/**/*.js",
|
|
"lint:style": "stylelint ./css/*",
|
|
"lint:typescript": "tslint --project . --exclude **/*.d.ts --format stylish src/**/*.ts utils/**/*.ts",
|
|
"watch": "webpack --watch --mode production",
|
|
"watch:dev": "webpack --watch --mode development"
|
|
},
|
|
"version": "0.35.1"
|
|
}
|