-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "whosthatpokemon",
"version": "2.0.0",
"description": "A browser-based game in which Pokémon silhouettes are shown to the user and they guess which Pokémon it is.",
"scripts": {
"build": "vite build",
"serve": "tcm --watch -p \"src/**/*.module.css\" & vite",
"typecheck": "npx tsc --noEmit",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"prepare": "husky",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Menardi/whosthatpokemon.git"
},
"author": "Menardi",
"bugs": {
"url": "https://github.com/Menardi/whosthatpokemon/issues"
},
"homepage": "https://github.com/Menardi/whosthatpokemon#readme",
"devDependencies": {
"@playwright/test": "^1.44.0",
"@preact/preset-vite": "^2.8.2",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"eslint": "^8.55.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^9.0.11",
"typed-css-modules": "^0.9.1",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"classnames": "^2.5.1",
"preact": "^10.21.0",
"react-redux": "^8.1.3",
"redux-persist": "^6.0.0"
}
}