-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.02 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
{
"name": "apple1js",
"version": "2.0.0",
"description": "2K3 modern version of Apple 1 JS by stid",
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": "git@github.com:stid/Apple1JS.git",
"author": "Stefano Furiosi <stid72@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"pretest": "run-s lint type-check",
"test": "vitest --silent",
"test:jest": "jest --config jest.config.cjs",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:ci": "run-s pretest vitest:ci",
"jest:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit --config jest.config.cjs",
"vitest:ci": "vitest run --reporter=default --reporter=junit --silent",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"lint:md": "markdownlint-cli2 '**/*.md' '#node_modules'",
"lint:md:fix": "markdownlint-cli2 --fix '**/*.md' '#node_modules'",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"type-check": "tsc --build ./tsconfig.json",
"clean": "rm -rf dist coverage",
"bundle-size": "vite build && du -sh dist"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.31.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"@vitejs/plugin-react": "4.6.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"cssnano": "^7.0.7",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"happy-dom": "^18.0.1",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^30.0.4",
"jest-junit": "^16.0.0",
"jsdom": "^26.1.0",
"markdownlint-cli2": "^0.18.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.17",
"terser": "^5.43.1",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"vite": "7.0.4",
"vitest": "^3.2.4"
},
"dependencies": {
"comlink": "^4.4.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"waait": "^1.0.5"
}
}