forked from TeamCodeStream/codestream-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.31 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.31 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
{
"name": "api-server",
"version": "13.0.2",
"dependencies": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@octokit/rest": "18.12.0",
"@slack/client": "5.0.2",
"@slack/web-api": "6.7.1",
"amqplib": "0.8.0",
"analytics-node": "6.0.0",
"async": "2.6.4",
"aws-sdk": "2.1115.0",
"base-64": "1.0.0",
"bcrypt": "5.0.1",
"body-parser": "1.20.0",
"botbuilder": "4.15.0",
"commander": "4.1.1",
"compare-versions": "4.1.3",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"csurf": "1.11.0",
"deep-equal": "2.0.5",
"escape-html": "1.0.3",
"express": "4.17.3",
"express-http-proxy": "1.6.3",
"express-request-id": "1.4.1",
"form-data": "4.0.0",
"git-url-parse": "12.0.0",
"glob": "7.2.0",
"glob-promise": "4.2.2",
"graphql-request": "4.2.0",
"handlebars": "4.7.7",
"hjson": "3.2.2",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.21",
"markdown-it": "12.3.2",
"markdown-it-emoji-mart": "0.1.1",
"markdown-it-slack": "1.2.0",
"moment": "2.29.4",
"moment-timezone": "0.5.34",
"mongodb": "4.5.0",
"msal": "1.4.16",
"multer": "1.4.5-lts.1",
"multer-s3": "2.10.0",
"newrelic": "8.9.1",
"node-fetch": "2.6.7",
"node-ipc": "9.2.1",
"node-schedule": "2.1.0",
"oauth": "0.9.15",
"path": "0.12.7",
"printf": "0.6.1",
"pubnub": "5.0.1",
"read-package-json": "4.1.1",
"socketcluster-client": "16.0.4",
"strftime": "0.10.1",
"stripe": "8.217.0",
"toposort": "2.0.2",
"uuid": "8.3.2",
"xregexp": "5.1.0"
},
"scripts": {
"veryclean": "git clean -fXd",
"test": "mocha --exit",
"test:ci": "npm run test -- --reporter mocha-teamcity-reporter",
"clean": "git clean -fXd -e !node_modules -e !node_modules/**/*",
"eslint": "eslint .",
"tarball": "touch api-server.tgz && tar -czpf api-server.tgz --exclude api-server.tgz --exclude .git .",
"docker:build": "cd .. && dt-docker-build -a build -D api_server/sandbox/docker/api-onprem -V 0.0.0",
"start": "bin/ensure-indexes.js && bin/api_server.js --one_worker"
},
"pre-commit": [
"eslint"
],
"devDependencies": {
"eslint": "8.13.0",
"mocha": "9.2.2",
"mocha-teamcity-reporter": "4.2.0",
"nodemon": "2.0.18",
"pre-commit": "1.2.2",
"randomstring": "1.2.2",
"snyk": "1.958.0"
},
"overrides": {
"[email protected]": {
"uglify-js": "3.16.1"
},
"[email protected]": {
"update-notifier": "6.0.0"
}
}
}