-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 1.04 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
{
"name": "scoop-gui",
"version": "0.0.1",
"scripts": {
"start": "pnpm --stream -r run start",
"dev": "pnpm --stream -r run dev",
"build": "pnpm --stream -r run build",
"tauribuild": "pnpm --filter web run tbuild",
"tauridev": "pnpm --filter web run tdev",
"lint": "pnpm --stream -r run lint",
"lint:fix": "pnpm --stream -r run lint:fix",
"format:fix": "pnpm --stream -r run format:fix",
"format": "pnpm --stream -r run format"
},
"dependencies": {
"typescript": "^5.0.4"
},
"devDependencies": {
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^48.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.0.0"
}
}