-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "jarvs-minesweeper",
"description": "JARVS(Just A Rather Very Simple) Minesweeper",
"version": "1.0.0",
"author": "Ioram Gordadze <Yoh0xFF@gmail.com>",
"license": "MIT",
"repository": "https://github.com/Yoh0xFF/jarvs-minesweeper",
"private": true,
"type": "module",
"homepage": ".",
"scripts": {
"start": "vite",
"start:preview": "vite preview",
"build": "tsc && vite build",
"test": "vitest run",
"test:dev": "vitest dev",
"format": "prettier --write 'src/**/*.ts' 'src/**/*.tsx' 'src/**/*.scss'",
"deploy": "gh-pages -d dist -u 'github-actions-bot <support+actions@github.com>'",
"clean": "npx rimraf ./**/dist ./**/node_modules"
},
"dependencies": {
"canvas-confetti": "1.9.3",
"classnames": "2.5.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/canvas-confetti": "1.6.4",
"@types/node": "22.10.2",
"@types/react": "18.2.25",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"jsdom": "25.0.1",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.6",
"sass": "1.83.0",
"typescript": "5.7.2",
"vitest": "2.1.8",
"vite": "6.0.3",
"gh-pages": "6.2.0",
"web-vitals": "4.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}