-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.31 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.31 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
{
"name": "simplistic-tetris",
"version": "3.2.0",
"description": "Simplistic Tetris - Retro Tetris game made with TypeScript. Play Tetris anywhere, anytime. Have a break play Tetris!",
"type": "module",
"main": "index.html",
"author": "Kevin Alves (KevOneRedOne)",
"license": "MIT",
"homepage": "https://simplistic-tetris.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/KevOneRedOne/Simplistic-Tetris.git"
},
"bugs": {
"url": "https://github.com/KevOneRedOne/Simplistic-Tetris/issues"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"dependencies": {
"vite": "^6.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.0.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.16",
"canvas": "^3.2.1",
"commitlint": "^19.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"jsdom": "^28.0.0",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
},
"keywords": [
"tetris",
"typescript",
"canvas",
"game",
"vite"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"dev": "vite",
"build": "node scripts/update-sitemap.js && npx tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,scss,css,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,scss,css,json}\"",
"sitemap:update": "node scripts/update-sitemap.js",
"docker:build": "docker build -t simplistic-tetris:latest .",
"docker:run": "docker run -d --name simplistic-tetris -p 8080:80 simplistic-tetris:latest",
"docker:stop": "docker stop simplistic-tetris",
"docker:build:run": "npm run docker:build && docker stop simplistic-tetris 2>/dev/null || true && docker rm simplistic-tetris 2>/dev/null || true && npm run docker:run"
},
"files": [
"dist",
"public",
"index.html"
]
}