forked from shm-open/code-push-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.89 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.89 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@cloudscapelabs/code-push-server",
"description": "CodePush service is hotupdate services which adapter react-native-code-push and cordova-plugin-code-push",
"version": "2.1.6-csl.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudscapelabs/code-push-server.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"code-push",
"react-native",
"cordova",
"services",
"code",
"push"
],
"author": "shihuimiao",
"bin": {
"code-push-server": "./bin/www.js",
"code-push-server-db": "./bin/db.js"
},
"engines": {
"node": ">= 6.0",
"npm": ">= 3.10.8"
},
"scripts": {
"dev": "npm run build && concurrently npm:dev:tsc npm:dev:run",
"dev:tsc": "tsc --watch",
"dev:run": "LOG_LEVEL=debug supervisor -e 'node|js|ts|pug|json' ./bin/www.js",
"start": "node ./bin/www.js",
"init": "node ./bin/db.js init",
"upgrade": "node ./bin/db.js upgrade",
"build": "rm -rf bin && tsc",
"release": "npm run build && npm test && standard-version --prerelease csl --release-as patch && git push --follow-tags origin master && npm publish",
"release-docker": "make release-docker",
"test": "make test",
"coverage": "make coverage",
"lint": "eslint src"
},
"dependencies": {
"@sentry/node": "^7.120.4",
"aws-sdk": "^2.1176.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"extract-zip": "^2.0.1",
"formidable": "^2.0.1",
"fs-extra": "^10.1.0",
"helmet": "^5.1.0",
"i18n": "^0.15.0",
"jsonwebtoken": "^9.0.2",
"kv-logger": "^0.5.3",
"lodash": "^4.17.21",
"moment": "^2.29.3",
"mysql2": "^3.11.3",
"node-fetch": "^2.6.7",
"nodemailer": "^7.0.10",
"pug": "^3.0.2",
"rand-token": "^1.0.1",
"recursive-readdir": "^2.2.2",
"redis": "^4.2.0",
"sequelize": "^6.21.3",
"slash": "^3.0.0",
"validator": "^13.7.0",
"yargs": "^17.5.1",
"yazl": "^2.5.1"
},
"devDependencies": {
"@shm-open/eslint-config-bundle": "^1.9.13",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cookie-parser": "^1.4.3",
"@types/formidable": "^2.0.5",
"@types/fs-extra": "^9.0.13",
"@types/i18n": "^0.13.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.195",
"@types/node-fetch": "^2.6.2",
"@types/nodemailer": "^6.4.5",
"@types/recursive-readdir": "^2.2.1",
"@types/validator": "^13.7.10",
"@types/yazl": "^2.4.2",
"concurrently": "^7.4.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"should": "^13.2.3",
"standard-version": "^9.5.0",
"supertest": "^6.2.4",
"supervisor": "^0.12.0",
"typescript": "^4.9.5"
},
"files": [
"bin",
"docs",
"locales",
"public",
"sql",
"views",
"README.md",
"LICENSE"
]
}