-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
87 lines (87 loc) · 2.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "project-structure-api",
"version": "2.0.1",
"description": "Project structure for API",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"start": "node .",
"start-watch": "nodemon --delay 5000ms --exec npm run start",
"build": "tsc",
"build-watch": "tsc -w",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc --write .",
"test": "jest",
"test:noCoverage": "jest --collectCoverage=false",
"sync-db": "node dist/database/sync"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arifintahu/project-structure-api.git"
},
"keywords": [
"nodejs",
"typescript",
"boilerplate",
"project"
],
"author": {
"name": "Miftahul Arifin",
"email": "miftahul97@gmail.com",
"url": "https://github.com/arifintahu"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/arifintahu/project-structure-api/issues"
},
"homepage": "https://github.com/arifintahu/project-structure-api#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.14.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.10.1",
"@types/sequelize": "^4.28.10",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-jest": "^29.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^29.0.1",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.+(ts)": "eslint --fix",
"*.+(ts|json|md)": "prettier --config .prettierrc --write ."
}
}