-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.15 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.15 KB
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
38
39
40
41
42
43
{
"name": "catchup",
"version": "1.0.0",
"description": "OTC CatchUp back end.",
"main": "index.js",
"scripts": {
"start": "sh util/build.sh && nodemon index.js",
"build": "sh ./util/build.sh",
"build:netlify": "gem install asciidoctor && (git pull --unshallow || true) && sh ./util/build.sh",
"lint:check": "prettier --check . --cache",
"lint": "prettier --write .",
"prepare": "node .husky/install.mjs",
"commitlint": "commitlint --edit --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OurTechCommunity/catchup.git"
},
"keywords": [
"OTC",
"CatchUp"
],
"author": "Harsh Kapadia <harshgkapadia@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OurTechCommunity/catchup/issues"
},
"homepage": "https://github.com/OurTechCommunity/catchup#readme",
"dependencies": {
"@netlify/blobs": "^10.0.10",
"@netlify/edge-functions": "^2.5.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^20.11.17",
"husky": "^9.1.7",
"nodemon": "^3.0.0",
"prettier": "^2.8.8",
"typescript": "^5.3.3"
}
}