-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
86 lines (86 loc) · 2.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"private": true,
"version": "0.0.0",
"name": "pkmn.help",
"type": "module",
"description": "The Pokémon Type Calculator (https://pkmn.help)",
"scripts": {
"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: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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavebeem/pkmn.help/issues"
},
"homepage": "https://github.com/wavebeem/pkmn.help#readme",
"devDependencies": {
"@types/classnames": "^2.3.1",
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.17.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.2",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"i18next-parser": "^8.13.0",
"jsdom": "^24.0.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"npm-check": "^6.0.1",
"prettier": "^2.3.1",
"rimraf": "^5.0.5",
"sharp": "^0.33.3",
"stylelint": "^16.3.1",
"stylelint-config-standard": "^36.0.0",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"typescript-eslint": "^7.4.0",
"vite": "^5.2.7",
"vite-plugin-pwa": "^0.19.7"
},
"dependencies": {
"classnames": "^2.5.1",
"colord": "^2.9.2",
"fastest-levenshtein": "^1.0.12",
"i18next": "^23.10.1",
"i18next-http-backend": "^2.5.0",
"match-sorter": "^6.3.4",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^2.0.4",
"react-i18next": "^14.1.0",
"react-router-dom": "^6.22.3",
"remove-accents": "^0.5.0",
"usehooks-ts": "^3.0.2"
}
}