-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.84 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.84 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
78
79
80
81
82
83
84
85
86
87
88
{
"private": true,
"version": "0.0.0",
"name": "pkmn.help",
"type": "module",
"description": "pkmn.help - The Pokémon Type Calculator",
"scripts": {
"add-translation": "tsx ./bin/add-translation.ts",
"copy-translations": "tsx ./bin/copy-translations.ts",
"delete-translations": "tsx ./bin/delete-translations.ts",
"stellar-styles": "tsx ./bin/stellar-styles.ts",
"update-pokedex": "tsx ./bin/update-pokedex.ts",
"scrape-bulba": "tsx ./bin/scrape-bulba.ts",
"language-export": "tsx ./bin/language-export.ts",
"language-import": "tsx ./bin/language-import.ts",
"i18n-scrape": "i18next",
"upgrade": "npm-check -u",
"start": "vite",
"prebuild": "rimraf dist && npm test",
"build": "vite build --mode production",
"test-sw": "npm run -s build && npx serve -s dist",
"preview": "vite preview",
"test:js": "vitest",
"snapshot:test:update": "vitest -- -u",
"watch:test:js": "vitest --watch",
"test:format": "prettier \"src/**/*.{ts,tsx,js,css}\" --check",
"test:lint:js": "eslint src -f unix",
"test:lint:css": "stylelint -f unix \"src/**/*.css\"",
"test:typecheck": "tsc -p .",
"test": "concurrently --group \"npm:test:*\"",
"visualize-bundle": "npx vite-bundle-visualizer",
"fix:format": "prettier \"src/**/*.{ts,tsx,js,css}\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavebeem/pkmn.help.git"
},
"keywords": [],
"author": "Sage Fennel Mock <sage@wavebeem.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavebeem/pkmn.help/issues"
},
"homepage": "https://github.com/wavebeem/pkmn.help#readme",
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.31",
"@types/papaparse": "^5.3.16",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"concurrently": "^9.1.2",
"eslint": "^9.29.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-react": "^7.37.5",
"i18next-parser": "^9.3.0",
"lodash-es": "^4.17.21",
"npm-check": "^6.0.1",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"sharp": "^0.34.2",
"stylelint": "^16.20.0",
"stylelint-config-standard": "^38.0.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^6.3.5",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.2.3"
},
"dependencies": {
"clsx": "^2.1.1",
"colord": "^2.9.2",
"fastest-levenshtein": "^1.0.12",
"i18next": "^25.2.1",
"i18next-http-backend": "^3.0.2",
"lucide-react": "0.555.0",
"match-sorter": "^8.0.3",
"papaparse": "^5.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.5.3",
"react-router-dom": "^7.6.2",
"remove-accents": "^0.5.0",
"usehooks-ts": "^3.1.1"
}
}