-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.85 KB
/
package.json
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
{
"name": "chip-8",
"version": "1.0.0",
"description": "yet another chip-8 :tv: emulator written in JS just for fun and practice.",
"scripts": {
"start": "webpack-dev-server --mode development --open",
"build": "npm run prepare-roms && webpack --mode production",
"deploy": "npm run build && gh-pages -d build",
"prepare-roms": "ts-node scripts/prepare-roms.ts",
"typecheck": "tsc --noEmit",
"lint": "prettier --write \"./src/**/*.+(js|jsx|ts|tsx|css|md)\" && eslint ./src --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikitapozdeev/chip-8.git"
},
"keywords": [
"chip-8",
"emulator",
"js",
"javascript"
],
"author": "Nikita Pozdeev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikitapozdeev/chip-8/issues"
},
"homepage": "https://nikitapozdeev.github.io/chip-8",
"lint-staged": {
"./src/**/*.+(js|jsx|ts|tsx|css|md)": "prettier --write",
"./src/**/*.(js|jsx|ts|tsx)": "eslint --fix"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-unused-imports": "^3.1.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.6.0",
"prettier": "^3.2.5",
"style-loader": "^3.3.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}