-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.3 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.3 KB
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
{
"name": "pulse-editor",
"version": "0.0.1",
"private": true,
"workspaces": [
"web",
"mobile",
"vscode-extension",
"npm-packages/react-api",
"npm-packages/shared-utils"
],
"scripts": {
"web-dev": "npm run dev-https --workspace=web",
"web-build": "npm run build --workspace=web",
"web-start": "npm run start --workspace=web",
"web-test": "npm run test --workspace=web",
"desktop-dev": "npm --prefix ./desktop run dev-https",
"desktop-build": "npm run web-build && npm --prefix ./desktop run build",
"android-dev": "npm run web-build && npm run android-dev --workspace=mobile",
"android-run": "npm run web-build && npm run android-run --workspace=mobile",
"react-api-build": "npm run build --workspace=npm-packages/react-api",
"shared-utils-build": "npm run build --workspace=npm-packages/shared-utils",
"react-api-pack": "npm run pack --workspace=npm-packages/react-api",
"shared-utils-pack": "npm run pack --workspace=npm-packages/shared-utils",
"cli-dev": "npm --prefix ./npm-packages/cli run dev",
"cli-build": "npm --prefix ./npm-packages/cli run build"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-tailwindcss": "^0.6.14"
}
}