-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "spoke",
"version": "1.0.0",
"description": "Spoke backend developer test API",
"main": "./src/index.ts",
"keywords": [
"nodejs",
"rest-api",
"postgresql",
"typeorm",
"expressjs",
"typescript"
],
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p .",
"test": "jest --coverage",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"author": "Michael Ogbuma",
"license": "ISC",
"dependencies": {
"@types/request": "^2.48.7",
"bcrypt": "^5.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1",
"typeorm": "^0.2.39",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": "16.2.0"
}
}