-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 913 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 913 Bytes
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
{
"name": "openprism",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm --workspace apps/backend run dev\" \"npm --workspace apps/frontend run dev\"",
"dev:backend": "npm --workspace apps/backend run dev",
"dev:frontend": "npm --workspace apps/frontend run dev",
"build": "npm --workspace apps/frontend run build",
"preview": "npm --workspace apps/frontend run preview",
"tunnel": "npm run build && cross-env OPENPRISM_TUNNEL=localtunnel node apps/backend/src/index.js",
"tunnel:cf": "npm run build && cross-env OPENPRISM_TUNNEL=cloudflared node apps/backend/src/index.js",
"tunnel:ngrok": "npm run build && cross-env OPENPRISM_TUNNEL=ngrok node apps/backend/src/index.js"
},
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3"
},
"dependencies": {
"pdf-lib": "^1.17.1"
}
}