-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 870 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 870 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
{
"name": "lapp-template",
"version": "0.1.0",
"private": false,
"scripts": {
"start": "concurrently npm:watch:*",
"install:all": "npm install && npm run install:frontend",
"install:frontend": "cd frontend && npm install && cd ..",
"watch:env": "node ./scripts/setup.env.js",
"watch:frontend": "cd frontend && npm start",
"watch:backend": "cd backend/docker/compose && docker-compose up",
"env:lnd:urls": "# TODO",
"env:lnd:macaroons": "# TODO",
"start:backend:polar": "open -a Polar",
"start:backend:compose": "cd backend/docker/compose && docker-compose up",
"start:backend:export": "cd backend/docker/export && unzip && docker-compose up"
},
"devDependencies": {
"concurrently": "^7.5.0"
},
"dependencies": {
"dotenv": "^16.0.3",
"node-fetch": "^3.2.10",
"styled-components": "^5.3.6"
}
}