apple2js/package.json
Ian Flanigan e8cd85f54a
Add configuration and dependencies to support Typescript (#37)
This change adds basic, non-optimal support for Typescript with
webpack. It functions well in development mode and deployment boots
ProDOS. There are probably many ways this configuration can be sped
up, but I haven't investigated that yet.

Note that no Typescript files are added in this change; it is merely a
configuration change.
2020-10-17 16:53:33 -07:00

48 lines
1.1 KiB
JSON

{
"name": "apple2js",
"version": "0.0.1",
"description": "Apple II Emulator in JavaScript",
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack-dev-server",
"index": "bin/index > json/disks/index.js",
"lint": "eslint .",
"start": "webpack-dev-server",
"test": "jest"
},
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whscullin/apple2js.git"
},
"author": "Will Scullin",
"license": "MIT",
"bugs": {
"url": "https://github.com/whscullin/apple2js/issues"
},
"homepage": "https://github.com/whscullin/apple2js#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/jest": "^26.0.14",
"ajv": "^6.12.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"file-loader": "^6.0.0",
"jest": "^25.5.4",
"node-forge": "^0.10.0",
"raw-loader": "^4.0.0",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"micromodal": "^0.4.2"
}
}