-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "bookmarklets",
"private": true,
"engines": {
"node": "20.11.1",
"pnpm": "8"
},
"scripts": {
"update-dependencies": "sh scripts/update-dependencies.sh",
"format": "prettier -w src",
"check-format": "prettier --check src",
"lint": "eslint src --max-warnings 0",
"check-types": "tsc",
"quality": "pnpm run check-format && pnpm run lint && pnpm run check-types",
"build": "node scripts/build.js"
},
"devDependencies": {
"@swc/core": "1.4.11",
"@types/eslint": "8.56.6",
"@types/he": "1.2.3",
"@types/node": "20.5.6",
"@types/prettier": "3.0.0",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.34.1",
"npm-check-updates": "16.14.18",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.3"
}
}