-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.24 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "apple2js",
"version": "0.0.1",
"description": "Apple II Emulator in JavaScript",
"scripts": {
"build": "rimraf dist/* && webpack --mode=production",
"dev": "webpack serve --mode=development",
"index": "bin/index > json/disks/index.js",
"lint": "eslint . && stylelint '**/*.scss'",
"lint-fix": "eslint --fix . && stylelint --fix '**/*.scss'",
"start": "webpack serve --mode=development --progress",
"test": "jest"
},
"engines": {
"node": ">= 20"
},
"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/plugin-transform-react-jsx": "^7.17.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.16.7",
"@eslint/js": "^9.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@testing-library/user-event": "^14.0.0",
"@types/jest": "^30.0.0",
"@types/jest-image-snapshot": "^6.4.0",
"@types/micromodal": "^0.3.2",
"@types/node": "^22.0.0",
"@types/wicg-file-system-access": "^2023.10.7",
"ajv": "^6.12.0",
"babel-jest": "^30.0.0",
"canvas": "^3.0.0",
"css-loader": "^7.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-jest": "^29.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.0.0",
"file-loader": "^6.0.0",
"globals": "^15.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-image-snapshot": "^6.1.0",
"jsdom": "^26.0.0",
"node-forge": "^1.3.2",
"prettier": "^3.1.0",
"raw-loader": "^4.0.0",
"rimraf": "^6.0.0",
"sass": "^1.57.1",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.0.0",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.0.0",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0",
"webpack": "^5.105.0",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.2.1",
"webpack-merge": "^6.0.1",
"y18n": "^5.0.0"
},
"overrides": {
"jest-image-snapshot": {
"jest": "$jest"
}
},
"dependencies": {
"@whscullin/cpu6502": "file:submodules/cpu6502",
"apple2shader": "file:submodules/apple2shader",
"bootstrap-icons": "^1.11.3",
"classnames": "^2.3.1",
"micromodal": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}