-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "@fourviere/fourviere",
"version": "0.1.0",
"private": true,
"author": "Brainrepo - [email protected]",
"license": "MIT",
"keywords": [
"podcast",
"rss"
],
"scripts": {
"test": "npm run test --workspaces --if-present",
"type:check": "npm run type:check --workspaces --if-present",
"dev": "npm run build:ui & npm run tauri dev --workspaces --if-present",
"watch": "npm run build:ui & npx concurrently \"npm run tauri dev --workspaces --if-present\" \"npm run ui:watch --workspaces --if-present\" ",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"prettier": "npm run prettier --workspaces --if-present",
"build:ui": "npm run build -w ./packages/ui",
"build": "npm run tauri build -w ./packages/app",
"prepare:husky": "husky install",
"build:website": "npm run build -w ./website"
},
"workspaces": [
"packages/*",
"website"
],
"dependencies": {
"concurrently": "^8.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"prettier": "3.1.1",
"typescript": "^5.3.3"
}
}