-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.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
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
75
76
77
{
"name": "linebacker",
"version": "0.0.1",
"description": "backup system backup controller",
"main": "dist/fastifyServer.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"pretty": "prettier --write \"src/**/*.ts\"",
"build": "rimraf dist; tsc",
"api:exp:typeorm:dev": "APP_ENV=dev ts-node src/apiSrvExpTypeorm.ts",
"rcv:exp:typeorm:dev": "APP_ENV=dev ts-node src/rcvSrvExpTypeorm.ts",
"queueHelper": "APP_ENV=dev ts-node src/test-helpers/queueHelper.ts",
"azurite": "npx azurite --location ~/dev/azurite_data",
"prepare": "husky install"
},
"author": "Jamee Mikell",
"license": "MIT",
"dependencies": {
"@azure/identity": "^3.0.0",
"@azure/storage-queue": "^12.10.0",
"@prisma/client": "^4.1.1",
"bullmq": "^3.2.0",
"dotenv": "^16.0.3",
"express": "^4.17.3",
"fast-jwt": "^2.0.2",
"fastify": "^3.29.0",
"get-jwks": "^8.0.0",
"got": "^11.8.5",
"mnemonist": "^0.39.2",
"morgan": "^1.10.0",
"mssql": "^7.3.5",
"nanoid": "^3.3.4",
"pino": "^8.4.0",
"pino-abstract-transport": "^1.0.0",
"pm2": "^5.2.2",
"pump": "^3.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"sonic-boom": "^3.2.0",
"tx2": "^1.0.5",
"typeorm": "^0.3.10",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/got": "^9.6.12",
"@types/jest": "^29.1.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.8.5",
"@types/pump": "^1.1.1",
"@types/splunk-logging": "^0.11.0",
"@types/supertest": "^2.0.12",
"@types/tx2": "^1.0.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"azurite": "^3.20.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.2.0",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.15",
"pino-pretty": "^9.1.1",
"prettier": "^2.7.1",
"prisma": "^4.1.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.7.0",
"typescript": "^4.7.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}