-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 992 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
{
"name": "automin",
"version": "0.0.1-alpha",
"description": "Simple passthrough server automation tool. Webhooks come in, webhooks go out. You can't explain that.",
"main": "dist/index.js",
"scripts": {
"heroku": "git push heroku main",
"cycle-key": "npm run clean && npm run build-local && node dist/api_gen.js && node dist/api_check.js",
"test-key": "node dist/api_check.js",
"build": "tsc --build && rm dist/api_*",
"build-local": "tsc --build",
"clean": "tsc --build --clean",
"start": "node dist/index.js",
"start-debug": "env DEBUG=true node dist/index.js"
},
"author": "ryxai",
"license": "MIT",
"devDependencies": {
"typescript": "^4.6.3"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.29",
"ajv": "^8.11.0",
"axios": "^0.27.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"express": "^4.18.0"
}
}