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