-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 KB
/
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
38
39
40
41
{
"name": "snackbackend",
"description": "Backend for snack bots",
"version": "0.1",
"engines": {
"node": "16.x",
"npm": "7.x"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/glob": "^7.2.0",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.0.3",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/luxon": "^2.0.5",
"ajv": "^8.6.3",
"dotenv": "^10.0.0",
"glob": "^7.2.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1",
"luxon": "^2.0.2",
"mongoose": "^6.0.12",
"python-shell": "^3.0.1",
"tesseract.js": "^2.1.5",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
},
"scripts": {
"start": "node dist/index.js",
"postinstall": "tsc",
"heroku-postbuild": "echo Skip build on Heroku",
"build": "node dist/index.js",
"watch": "tsc-watch --onSuccess 'node ./dist/index.js'",
"deploy": "git add . && git commit -m Heroku && git push heroku main"
}
}