-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.9 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": "space-invaders",
"private": true,
"version": "1.0.0",
"type": "commonjs",
"description": "A test task from TradingView performed in May of 2017",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format-check": "prettier . --check --ignore-unknown --cache",
"format-fix": "prettier . --write --ignore-unknown --cache",
"format-staged": "prettier --write --cache",
"format": "pnpm format-fix",
"type-check": "tsc --noEmit",
"lint-js": "eslint src --max-warnings=0 --cache",
"lint-js-directives": "eslint src --report-unused-disable-directives --max-warnings=0 --cache",
"lint-js-fix": "eslint src --max-warnings=0 --cache --fix",
"lint-editorconfig": "editorconfig-checker",
"lint": "pnpm format && pnpm type-check && pnpm lint-js",
"test": "vitest run",
"coverage": "vitest run --coverage",
"ci-format-check": "pnpm format-check",
"ci-type-check": "pnpm type-check",
"ci-lint": "pnpm lint-js",
"ci-test": "pnpm coverage",
"prepare": "husky || true"
},
"keywords": [
"space",
"invaders",
"js",
"game",
"canvas"
],
"author": "Alex Orekhov <[email protected]> (https://github.com/everget)",
"license": "MIT",
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/coverage-v8": "^1.3.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-vite": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^5.1.1",
"vite-plugin-tsconfig-paths": "^1.4.1",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2",
"vitest-canvas-mock": "^0.3.3"
}
}