-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
37 lines (37 loc) · 926 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
28
29
30
31
32
33
34
35
36
37
{
"name": "catchup",
"version": "1.0.0",
"description": "OTC CatchUp back end.",
"main": "index.js",
"scripts": {
"start": "sh util/build.sh && nodemon index.js",
"build": "yum install -y ruby && gem install asciidoctor && sh ./util/build.sh",
"lint:check": "prettier --check .",
"lint": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/OurTechCommunity/catchup.git"
},
"keywords": [
"OTC",
"CatchUp"
],
"author": "Harsh Kapadia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OurTechCommunity/catchup/issues"
},
"homepage": "https://github.com/OurTechCommunity/catchup#readme",
"dependencies": {
"@netlify/blobs": "^8.0.1",
"@netlify/edge-functions": "^2.5.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.11.17",
"nodemon": "^3.0.0",
"prettier": "2.7.1",
"typescript": "^5.3.3"
}
}