-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 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
{
"dependencies": {
"@fastify/cors": "^11.0.1",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.0",
"fastify": "^5.4.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.4",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"validator": "^13.15.15"
},
"name": "fastify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"globals": "^16.3.0",
"nodemon": "^3.1.10",
"semantic-release": "^24.2.7"
},
"scripts": {
"dev": "nodemon index.js",
"start": "bun run index.js",
"release": "semantic-release",
"commit": "git-cz"
},
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module"
}