-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
55 lines (55 loc) · 1.65 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
{
"name": "markflowy-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"docs"
],
"scripts": {
"dev": "turbo dev",
"dev:desktop": "yarn workspace @markflowy/desktop tauri:dev",
"build": "turbo build",
"build:desktop": "yarn build && yarn workspace @markflowy/desktop tauri:build",
"delete": "turbo delete",
"release": "node scripts/release.js",
"release:patch": "yarn release --patch",
"release:minor": "yarn release --minor",
"release:major": "yarn release --major",
"test": "turbo test",
"updater": "yarn workspace @markflowy/desktop updater",
"lint": "eslint --fix --ext .tsx ./"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@halodong/eslint-config-react": "^0.38.24",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"@rollup/plugin-url": "^8.0.2",
"babel": "^6.23.0",
"child_process": "^1.0.2",
"eslint": "9.13.0",
"fast-glob": "^3.3.2",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"postcss-nested": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "4.24.3",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.6.3"
},
"packageManager": "yarn@4.2.2",
"dependencies": {
"turbo": "^2.2.3"
}
}