-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.08 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "peregrine-frontend",
"private": true,
"description": "A scouting app for FRC competitions. This is the frontend, written in TypeScript with Preact",
"license": "MIT",
"repository": "Pigmice2733/peregrine-frontend",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"check-lint": "eslint --format=pretty --ignore-path .gitignore --ext .js,.ts,.tsx . && prettier --list-different --ignore-path .gitignore .",
"eslint": "eslint --format=pretty --ignore-path .gitignore --fix --ext .js,.ts,.tsx .",
"lint": "eslint --format=pretty --ignore-path .gitignore --fix --ext .js,.ts,.tsx . && prettier --write --ignore-path .gitignore .",
"new-route": "hygen route new",
"rollup-watch": "rollup -c rollup.config.js --watch",
"start": "vite",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"type": "tsc",
"type:watch": "tsc --watch"
},
"dependencies": {
"@mdi/js": "5.8.55",
"ganalytics": "3.1.3",
"matchit": "1.1.0",
"polished": "4.2.2",
"preact": "10.19.3",
"qss": "2.0.3"
},
"devDependencies": {
"@babel/preset-typescript": "7.23.3",
"@linaria/core": "6.0.0",
"@preact/preset-vite": "2.7.0",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/preact": "3.2.3",
"@types/node-fetch": "2.5.12",
"@types/sharp": "0.29.2",
"@wyw-in-js/vite": "0.2.2",
"clsx": "1.1.1",
"dotenv": "8.6.0",
"eslint": "7.32.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-caleb": "11.0.0",
"fake-indexeddb": "3.1.7",
"happy-dom": "^12.10.3",
"hygen": "1.6.2",
"identity-obj-proxy": "3.0.0",
"node-fetch": "2.6.5",
"postcss": "8.4.32",
"postcss-calc": "9.0.1",
"postcss-color-mod-function": "3.0.3",
"postcss-css-variables": "0.19.0",
"postcss-import": "15.1.0",
"postcss-preset-env": "9.3.0",
"prettier": "2.2.1",
"prompts": "1.2.1",
"rollup": "4.9.1",
"sharp": "0.29.2",
"templite": "1.2.0",
"type-fest": "0.21.3",
"typescript": "4.9.5",
"vite": "5.0.10",
"vitest": "1.0.4"
},
"browserslist": [
">.5% in us",
"not ie 11",
"not ios_saf <11.1",
"not edge <79",
"not android <81"
],
"eslintConfig": {
"extends": [
"plugin:caleb/recommended",
"plugin:caleb/preact"
],
"rules": {
"no-return-await": "off",
"caleb/react/display-name": "off",
"no-else-return": [
"error",
{
"allowElseIf": true
}
],
"caleb/@typescript-eslint/ban-ts-ignore": "off",
"caleb/react/react-in-jsx-scope": "off",
"no-restricted-imports": [
"error",
{
"paths": [
{
"name": "preact",
"importNames": [
"h",
"Fragment"
],
"message": "The JSX runtime is injected automatically"
}
]
}
],
"no-warning-comments": "off"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"type": "module"
}