-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.33 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.33 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
{
"name": "altridedge-server",
"version": "1.11.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"debug": "node --inspect=0.0.0.0:9229 ./bin/www",
"standard-version": "standard-version",
"release:finish": "branch=$(git rev-parse --abbrev-ref HEAD | cut -d'/' -f2); git pull origin release/${branch} && git fetch && git pull origin master && npm run standard-version -- --release-as minor && git flow release finish -Fpn ${branch} && git push --tags",
"hotfix:finish": "branch=$(git rev-parse --abbrev-ref HEAD | cut -d'/' -f2); git pull origin hotfix/${branch} && git fetch && git pull origin master && npm run standard-version -- --release-as patch && git flow hotfix finish -Fpn ${branch} && git push --tags"
},
"dependencies": {
"axios": "^1.7.9",
"cookie-parser": "~1.4.7",
"cors": "^2.8.5",
"debug": "~4.4.0",
"ejs": "~3.1.10",
"express": "^4.21.2",
"http-errors": "~2.0.0",
"jsonwebtoken": "^9.0.2",
"mathjs": "^14.0.1",
"morgan": "~1.10.0",
"multer": "^1.4.4",
"mysql": "^2.18.1",
"nodemailer": "^6.9.16",
"short-unique-id": "^5.2.0",
"socket.io": "^3.1.1",
"vhost": "^3.0.2"
},
"devDependencies": {
"standard-version": "^9.5.0"
}
}