This repository was archived by the owner on Jul 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fds-dev",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:LeZuse/fds-dev.git",
"homepage": "https://github.com/feature-delivery/fds-dev",
"author": "Tomas Ruzicka <me@tomasr.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --trace-warnings --async-stack-traces --respawn --transpileOnly ./src/index.ts",
"start": "node ./build/index.js",
"test": "echo nothing here",
"build": "tsc --pretty --project ./tsconfig.heroku.json || echo All fine.",
"clean": "rimraf ./build",
"clean-deps": "rimraf ./node_modules",
"deploy": "./scripts/deploy_prod.sh",
"stage": "git push staging master:master"
},
"engines": {
"node": "12"
},
"dependencies": {
"@sentry/integrations": "^5.11.0",
"@sentry/node": "^5.11.0",
"@slack/events-api": "^2.3.0",
"@slack/web-api": "^5.6.0",
"@types/async-retry": "^1.4.1",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.5",
"@types/morgan": "^1.7.37",
"@types/request": "^2.48.3",
"@types/verror": "^1.10.3",
"async-retry": "^1.3.1",
"axios": "^0.19.1",
"axios-auth-refresh": "^1.0.7",
"axios-retry": "^3.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-http-context": "^1.2.3",
"honeycomb-beeline": "^2.0.0",
"js-base64": "^2.5.1",
"jsonwebtoken": "^8.5.1",
"libhoney": "^2.0.1",
"log-that-http": "^1.0.1",
"mixpanel": "^0.11.0",
"moesif-express": "^2.9.15",
"morgan": "^1.9.1",
"pg": "^7.14.0",
"reflect-metadata": "^0.1.10",
"request": "^2.88.0",
"smee-client": "^1.1.0",
"superagent": "^5.1.1",
"ts-node": "^8.5.4",
"tslib": "^1.10.0",
"typeorm": "0.2.21",
"typeorm-naming-strategies": "^1.1.0",
"verror": "^1.10.0"
},
"nodemonConfig": {
"exec": "yarn start",
"watch": [
".env",
"."
]
},
"devDependencies": {
"@types/node": "^8.0.29",
"nodemon": "^2.0.1",
"pretty-error": "^2.1.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.4"
}
}