-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.04 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
{
"name": "apple1js",
"version": "2.0.0",
"description": "2K3 modern version of Apple 1 JS by stid",
"source": "src/index.html",
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": "[email protected]:stid/Apple1JS.git",
"author": "Stefano Furiosi <[email protected]>",
"license": "MIT",
"scripts": {
"start": "parcel",
"build": "parcel build",
"pretest": "run-s lint type-check",
"test": "jest",
"test:ci": "run-s pretest jest:ci",
"jest:ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"type-check": "tsc --build ./tsconfig.json"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react": "^7.37.4",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"npm-run-all": "^4.1.5",
"parcel": "^2.13.3",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"process": "^0.11.10",
"react-testing-library": "^8.0.1",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"immer": "^10.1.1",
"million": "^3.1.11",
"react": "19.0.0",
"react-dom": "19.0.0",
"waait": "^1.0.5",
"web-vitals": "^4.2.4"
}
}