-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.51 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
88
89
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "Template for Node.js projects",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn ./src/index.ts",
"lint": "eslint --ext .ts,.tsx ./",
"lint:fix": "eslint --ext .ts,.tsx ./ --fix",
"test": "NODE_ENV=test jest --testTimeout=10000",
"prepare": "husky install",
"version": "conventional-changelog -i CHANGELOG.md -s && git add ."
},
"dependencies": {
"@faker-js/faker": "^8.0.0",
"axios": "^1.2.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^7.0.0",
"morgan": "^1.10.0",
"pino": "^8.0.0",
"pino-http": "^8.0.0",
"pino-pretty": "^10.0.0",
"request-promise": "^4.2.6",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.4.0",
"zod": "^3.14.4"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.0",
"@types/lodash": "^4.14.178",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^18.0.0",
"@types/pino": "^7.0.5",
"@types/pino-http": "^5.8.1",
"@types/socket.io": "^3.0.2",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"conventional-changelog-cli": "^3.0.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.3",
"supertest": "^6.2.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makeitrealcamp/nodejs-template.git"
},
"keywords": [
"template",
"typescript",
"backend",
"make-it-real"
],
"author": "makeitreal",
"license": "MIT",
"bugs": {
"url": "https://github.com/makeitrealcamp/nodejs-template/issues"
},
"homepage": "https://github.com/makeitrealcamp/nodejs-template#readme",
"volta": {
"node": "18.16.1",
"npm": "9.8.0"
}
}