-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
27 lines (27 loc) · 953 Bytes
/
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
{
"name": "simplegrants",
"version": "0.0.1",
"description": "A super modular, plug-and-play Web2 grants funding system.",
"main": "index.js",
"author": "Eason Chai",
"private": true,
"license": "GPL-3.0",
"scripts": {
"start:dev": "docker compose -f docker-compose.dev.yml up -d && npm run setup && stripe listen --forward-to localhost:3000/checkout/webhook",
"start": "docker compose up -d",
"stop:dev": "docker compose -f docker-compose.dev.yml down",
"stop": "docker compose down",
"logs:dev": "docker compose -f docker-compose.dev.yml logs --follow",
"logs": "docker compose logs --follow",
"setup": "cd backend && npm run setup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easonchai/simplegrants.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/easonchai/simplegrants/issues"
},
"homepage": "https://github.com/easonchai/simplegrants#readme"
}