-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "infostart2022-bff",
"version": "1.0.0",
"description": "BFF example for Infostart Event 2022",
"main": "app.js",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "npm run build && node ./dist/app.js",
"start:dev": "nodemon",
"start:mock": "json-server ./mocks/backend-data.json --port 31337",
"build": "npm run clean && npm run compile",
"lint": "eslint src/ --ext .ts",
"compile": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"ts": "ts-node"
},
"keywords": [
"bff",
"nodejs",
"typescript",
"typegoose",
"mongoose"
],
"author": "Igor Antonov",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-htmlacademy": "^5.1.2",
"json-server": "^0.17.0",
"nodemon": "^2.0.20",
"pino-pretty": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"express": "^4.18.1",
"got": "^12.5.1",
"pino": "^8.6.1"
}
}