apple2js/package.json

73 lines
2.1 KiB
JSON
Raw Normal View History

{
"name": "apple2js",
"version": "0.0.1",
"description": "Apple II Emulator in JavaScript",
"scripts": {
"build": "rimraf dist/* && webpack --mode=production",
2021-03-26 18:42:30 +00:00
"dev": "webpack serve --mode=development",
2020-06-18 09:34:31 +00:00
"index": "bin/index > json/disks/index.js",
"lint": "eslint '**/*.js' '**/*.ts' '**/*.tsx'",
"start": "webpack serve --mode=development --progress",
2019-03-27 04:02:27 +00:00
"test": "jest"
},
2019-09-07 18:18:42 +00:00
"engines": {
"node": ">= 14"
2019-09-07 18:18:42 +00:00
},
"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",
2019-03-01 05:21:18 +00:00
"devDependencies": {
2020-03-22 23:35:27 +00:00
"@babel/core": "^7.9.0",
"@babel/plugin-transform-react-jsx": "^7.17.3",
2020-03-22 23:35:27 +00:00
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/dom": "^7.30.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/preact": "^3.0.1",
"@testing-library/user-event": "^13.1.3",
2021-10-02 14:21:37 +00:00
"@types/jest": "^27.0.2",
"@types/jest-image-snapshot": "^4.3.1",
"@types/micromodal": "^0.3.2",
"@types/wicg-file-system-access": "^2020.9.5",
2022-06-04 18:34:17 +00:00
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
2020-03-22 23:35:27 +00:00
"ajv": "^6.12.0",
2021-10-02 14:21:37 +00:00
"babel-jest": "^27.2.4",
2021-11-29 00:48:44 +00:00
"canvas": "^2.8.0",
"css-loader": "^6.7.1",
2022-06-04 18:34:17 +00:00
"eslint": "^8.17.0",
"eslint-plugin-jest": "^26.4.3",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
2020-03-22 23:35:27 +00:00
"file-loader": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
2021-10-02 14:21:37 +00:00
"jest": "^27.2.4",
"jest-image-snapshot": "^4.5.1",
"node-forge": "^1.3.0",
"raw-loader": "^4.0.0",
"rimraf": "^3.0.2",
"style-loader": "^3.3.1",
2021-10-02 14:21:37 +00:00
"ts-jest": "^27.0.5",
"ts-loader": "^9.3.0",
2022-06-04 18:34:17 +00:00
"typescript": "^4.7.3",
2021-03-25 14:48:47 +00:00
"webpack": "^5.28.0",
2021-11-29 00:41:55 +00:00
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
2021-07-04 15:12:12 +00:00
"webpack-merge": "^5.8.0",
2021-04-24 23:17:57 +00:00
"y18n": "^4.0.1"
},
"dependencies": {
2022-06-15 16:42:07 +00:00
"apple2shader": "0.0.4",
"classnames": "^2.3.1",
"micromodal": "^0.4.2",
"preact": "^10.7.1"
}
}