-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.27 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
{
"name": "solid-pokedex",
"version": "1.0.0",
"description": "A Pokedex written in Solid.js",
"license": "MIT",
"private": true,
"author": "N0tExisting",
"homepage": "https://solid-pokedex.netlify.app/pokemon",
"repository": {
"url": "https://github.com/N0tExisting/solid-pokedex.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/N0tExisting/solid-pokedex/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "c8 ava -v --config ./ava.config.cjs",
"test:watch": "ava -v -w --config ./ava.config.cjs",
"format": "prettier -w -l **/*.{json,js,jsx,ts,tsx,yaml,yml,md}",
"format:check": "prettier -c",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.json --cache --cache-location node_modules/.cache/.eslintcache --report-unused-disable-directives",
"prepare": "husky install"
},
"dependencies": {
"@antfu/utils": "^0.3.0",
"pokeapi-typescript": "^2.1.0",
"solid-app-router": "^0.1.13",
"solid-icons": "^0.3.2",
"solid-js": "^1.2.5",
"solid-meta": "^0.27.2",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/html-minifier-terser": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"@vitejs/plugin-legacy": "^1.6.3",
"@windicss/plugin-interaction-variants": "^1.0.0",
"@windicss/plugin-question-mark": "^0.1.1",
"@windicss/plugin-scrollbar": "^1.2.3",
"ava": "^3.15.0",
"c8": "^7.10.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-solid": "^0.1.2",
"eslint-plugin-tsdoc": "^0.2.14",
"esm": "^3.2.25",
"husky": "^7.0.4",
"jsdom": "^18.1.1",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"rollup-plugin-sri": "^1.3.4",
"solid-register": "^0.1.1",
"solid-testing-library": "^0.2.1",
"typescript": "^4.5.2",
"vite": "^2.6.14",
"vite-plugin-html": "^2.1.1",
"vite-plugin-pages-solid": "^0.0.2",
"vite-plugin-solid": "^2.1.2",
"vite-plugin-solid-svg": "^0.1.2",
"vite-plugin-windicss": "^1.5.3",
"vite-tsconfig-paths": "^3.3.17"
}
}