-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 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
{
"name": "quer-manager-api",
"description": "API for QR code based festival management system.",
"version": "0.2.4",
"keywords": [
"festival",
"express",
"typescript"
],
"license": "MIT",
"dependencies": {
"@baselhack2021/interfaces": "^1.0.9",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"mongodb": "^4.1.1",
"mongoose": "^6.0.3",
"morgan": "^1.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/faker": "^5.5.8",
"@types/jest": "^27.0.1",
"@types/mongodb": "^4.0.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^16.7.10",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^5.5.3",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"main": "dist/index.js",
"scripts": {
"build": "yarn tsc",
"start": "node dist/index.js",
"inspect": "nodemon --inspect src/index.ts",
"test": "jest --passWithNoTests",
"lint": "yarn lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "yarn lint:eslint src/",
"lint:fix": "yarn lint:js --fix"
}
}