-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 975 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 975 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
26
27
28
29
30
31
32
33
34
35
36
{
"name": "solve",
"version": "0.0.1",
"description": "Solve app",
"main": "index.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"client": "yarn workspace @solve/client start --https",
"server": "yarn workspace @solve/server dev",
"presentation": "yarn workspace @solve/presentation dev",
"build-web": "yarn workspace @solve/client build:web",
"docs": "yarn workspace @solve/presentation build",
"publish:stage": "yarn workspace @solve/client publish:stage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w8r/solve.git"
},
"author": "Alexander Milevski <alex@milevski.co>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w8r/solve/issues"
},
"homepage": "https://github.com/w8r/solve#readme",
"dependencies": {
"localtunnel": "^2.0.1"
},
"packageManager": "yarn@3.2.0",
"devDependencies": {
"surge": "^0.23.1",
"vercel": "^24.2.4"
}
}