-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
86 lines (86 loc) · 2.67 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
{
"name": "nuzlocke-tracker",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint src",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test:randomiser": "for i in `cat src/lib/data/games.json | jq 'keys[]' -r`; do curl -s http://localhost:5173/api/route/generate/$i.json; done",
"test:pokemon": "for i in `cat src/lib/data/games.json | jq 'keys[]' -r`; do curl -s http://localhost:5173/api/pokemon/$i.json; done",
"test:league": "deno run --allow-read ./api/static/league/validate.ts"
},
"devDependencies": {
"@iconify-icons/mdi": "^1.2.34",
"@sveltejs/adapter-vercel": "next",
"@sveltejs/kit": "next",
"@tailwindcss/line-clamp": "^0.4.2",
"autoprefixer": "^10.4.7",
"cssnano": "^5.0.8",
"eslint": "^8.2.0",
"eslint-plugin-svelte3": "^3.2.1",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier-html": "^0.0.2",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.2.7",
"rollup-plugin-visualizer": "^5.5.4",
"svelte": "^3.58.0",
"svelte-preprocess": "^4.10.7",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.4",
"vite": "^3.2.4"
},
"dependencies": {
"@google-cloud/bigquery": "^6.1.0",
"@iconify-icons/emojione-monotone": "^1.2.4",
"@iconify-icons/fa-solid": "^1.2.4",
"@iconify-icons/fe": "^1.2.3",
"@iconify-icons/gg": "^1.2.3",
"@iconify-icons/ph": "^1.2.3",
"@iconify-icons/ri": "^1.2.4",
"@iconify-icons/simple-icons": "^1.2.37",
"@iconify-icons/tabler": "^1.2.68",
"@iconify-icons/wi": "^1.2.3",
"@iconify/svelte": "^3.0.1",
"@sentry/svelte": "^7.47.0",
"@smogon/calc": "^0.6.0",
"clean-css": "^5.2.2",
"dayjs": "^1.10.7",
"fast-deep-equal": "^3.1.3",
"match-sorter": "^6.3.1",
"pokedex-promise-v2": "^3.3.2",
"pokemon-assets": "^0.6.0",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.10.0",
"ramda": "^0.27.1",
"simplex-noise": "^3.0.0",
"svelte-intersection-observer": "^0.9.1",
"svelte-portal": "^2.1.2",
"svelte-simple-modal": "^1.1.1",
"tinyurl": "^1.1.7",
"tippy.js": "^6.3.7",
"vite-plugin-markdown": "^2.1.0",
"zod": "^3.21.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"trailingComma": "none",
"semi": false,
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-organize-imports",
"prettier-plugin-tailwindcss"
]
},
"resolutions": {
"dotenv": ">= 15.0.0"
},
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/domtronn/dc-nuzlocke",
"author": "domtronn <[email protected]>",
"license": "MIT"
}