forked from wavebeem/pkmn.help
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.52 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
{
"private": true,
"version": "0.0.0",
"name": "pkmn.help",
"description": "Pokémon type calculator",
"scripts": {
"merge-data": "ts-node ./bin/merge-data.ts",
"scrape-bulba": "ts-node ./bin/scrape-bulba.ts",
"scrape-pokeapi": "ts-node ./bin/scrape-pokeapi.ts",
"scrape-pokeapi:local": "API=http://localhost:8000/api/v2/ npm run -s scrape-pokeapi",
"fetch-images": "ts-node ./bin/fetch-images.ts",
"upgrade": "npm-check -u",
"start": "vite",
"prebuild": "rimraf dist",
"typecheck": "tsc -p .",
"build": "tsc && vite build --mode production",
"test-sw": "npm run -s build && npx serve -s dist",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.tsx,.js",
"pretty": "prettier \"src/**/*.{ts,tsx,js}\" --check",
"pretty:fix": "prettier \"src/**/*.{ts,tsx,js}\" --write",
"test": "npm-run-all -s lint pretty"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavebeem/pkmn.help.git"
},
"keywords": [],
"author": "Brian Mock <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wavebeem/pkmn.help/issues"
},
"homepage": "https://nguoianphu.github.io/pkmn.help",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.0.3",
"@tsconfig/node16": "^1.0.2",
"@types/jsdom": "^16.2.13",
"@types/lodash": "^4.14.178",
"@types/node": "^13.13.52",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@vitejs/plugin-react-refresh": "^1.3.5",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.7",
"jsdom": "^16.6.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"npm-check": "^5.9.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.3.2",
"vite": "^2.4.1",
"vite-plugin-pwa": "^0.11.8"
},
"dependencies": {
"@types/classnames": "^2.3.1",
"@types/match-sorter": "^4.0.0",
"@types/papaparse": "^5.2.5",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.7",
"classnames": "^2.3.1",
"fastest-levenshtein": "^1.0.12",
"match-sorter": "^4.1.0",
"papaparse": "^5.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.2.2",
"react-router-dom": "^5.2.0",
"tachyons": "^4.12.0",
"use-debounce": "^7.0.0",
"usehooks-ts": "^2.1.1"
}
}