-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "portal-to-work-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "rimraf ./build && tsc",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js --config src/database.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@bull-board/fastify": "^3.7.0",
"bull": "^4.1.1",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"fastify": "^3.24.0",
"fastify-jwt": "^4.1.3",
"fastify-plugin": "^3.0.0",
"pg": "^8.7.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typeorm": "^0.2.41",
"typeorm-typedi-extensions": "^0.4.1"
},
"devDependencies": {
"@types/bull": "^3.15.6",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"json-schema-to-ts": "^1.6.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"engines": {
"node": ">=16.0.0 <17.0.0",
"npm": ">=8.0.0 <9.0.0"
}
}