-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
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
{
"name": "juniper-ingestion-stack",
"version": "1.0.0",
"description": "",
"main": "./src/server.js",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "yarn serve",
"build": "yarn build-ts && yarn tslint",
"serve": "node -r dotenv/config dist/server.js",
"watch-node": "nodemon -r dotenv/config dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch-ts\" \"yarn watch-node\"",
"watch-test": "yarn test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "yarn build && yarn watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"test": "jest unit --forceExit --verbose",
"lint:fix": "yarn tslint --fix",
"db:create": "npx sequelize-cli db:create",
"db:seed": "npx sequelize-cli db:seed",
"db:drop": "npx sequelize-cli db:drop",
"db:migrate": "npx sequelize-cli db:migrate",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch-ts\" \"yarn serve-debug\""
},
"author": "<Daniel Ashcraft>(https://ofashandfire.com)",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/kafkajs": "^1.9.0",
"concurrently": "^6.5.1",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"dependencies": {
"@bull-board/express": "^3.8.1",
"@types/body-parser": "^1.19.2",
"@types/bull": "^3.15.7",
"@types/cors": "^2.8.12",
"@types/lodash": "^4.14.178",
"@types/pg": "^8.6.2",
"@types/sequelize": "^4.28.10",
"body-parser": "^1.19.1",
"bull": "^4.1.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"kafkajs": "^1.15.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.12.0",
"sequelize-date-no-tz-postgres": "^1.0.0",
"socket.io": "^4.4.0",
"ts-jest": "^27.1.2",
"tslint-config-airbnb": "^5.11.2"
}
}