-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.89 KB
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
{
"name": "taskmanagementapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"tslint": "tslint --project tsconfig.json",
"lint": "eslint \"src/**/*.ts\"",
"lint-and-fix": "eslint \"src/**/*.ts\" --fix",
"prebuild": "npm install",
"build": "rm -rf ./build && tsc",
"prettier": "prettier --config .prettierrc 'src/**/*.ts' --write",
"start": "node lib/index.js",
"dev": "./node_modules/nodemon/bin/nodemon.js",
"pre-commit": "npm run prettier && npm run lint-and-fix",
"pre-push": "npm run prettier && npm run lint-and-fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chidinma21/Vending-Machine-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Chidinma21/Vending-Machine-API/issues"
},
"homepage": "https://github.com/Chidinma21/Vending-Machine-API#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.4",
"@types/node": "^18.15.11",
"@types/passport": "^1.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"http-status": "^1.6.2",
"joi": "^17.9.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^5.9.4",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"uuid": "^9.0.0"
}
}