-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.81 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
{
"private": true,
"version": "1.0.1",
"name": "sierpinski-triangle-react",
"description": "Sierpiński triangle implementation with React/TypeScript",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Constantiner/sierpinski-triangle-react.git"
},
"keywords": [
"React",
"TypeScript",
"Canvas",
"Sierpiński triangle",
"recursion"
],
"author": {
"name": "Konstantin Kovalev",
"email": "constantiner@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Constantiner/sierpinski-triangle-react/issues"
},
"homepage": "https://constantiner.github.io/sierpinski-triangle-react/",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@eslint/config-inspector": "^0.4.6",
"@eslint/js": "^9.1.1",
"@stylistic/eslint-plugin-js": "^1.7.2",
"@svgr/rollup": "^8.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.2",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-unicorn": "^52.0.0",
"globals": "^15.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rollup": "^4.14.3",
"sass": "^1.75.0",
"stylelint": "^16.3.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.2.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"vite": "^5.2.9"
},
"scripts": {
"dev": "npx vite",
"build": "tsc && npx vite build",
"preview": "npx vite preview",
"format": "npx prettier --write '**/*.{js,ts,jsx,tsx,css,scss,json,htm,html,yml,eslintrc,huskyrc,lintstagedrc,prettierrc,stylelintrc}'",
"lint": "npx tsc --noEmit && npx eslint . --report-unused-disable-directives --max-warnings 0 && npx stylelint '**/*.{css,scss}'",
"lint-staged": "npx lint-staged",
"lint:config-inspector": "npx @eslint/config-inspector",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}