-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
60
61
62
63
64
65
66
67
68
{
"name": "fog-of-war-vite",
"homepage": "https://wblachut.github.io/fog-of-war",
"private": false,
"version": "1.0.0",
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -d dist",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "vitest",
"coverage": "vitest --coverage"
},
"dependencies": {
"@types/react-test-renderer": "^18.0.0",
"@vitest/ui": "^0.33.0",
"gh-pages": "^5.0.0",
"konva": "^9.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-konva": "^18.2.10",
"react-spring": "^9.7.2",
"use-image": "^1.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-react": "^1.3.0",
"@vitest/coverage-v8": "^0.33.0",
"canvas": "^2.11.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-react-hooks": "^4.5.0",
"jsdom": "^22.1.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^4.4.4",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^0.33.0"
},
"main": "index.js",
"repository": "https://github.com/akena-engineering/wojciech-blachut.git",
"author": "Wojciech Błachut <38980771+wblachut@users.noreply.github.com>",
"license": "MIT",
"jest": {
"testEnvironment": "jsdom",
"setupFiles": [
"canvas"
]
}
}