forked from speckleworks/SpeckleServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.24 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
{
"name": "@speckle/speckleserver",
"version": "1.6.0",
"description": "This is the speckle server. Orchestrates all the communication channels between clients and does heavy lifting for geometry and other data.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"lint": "eslint . --fix",
"test": "NODE_ENV=test nyc mocha --timeout 120000 --exit --recursive"
},
"author": "Dimitrie Stefanescu & Project Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/speckleworks/SpeckleServer"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.19.0",
"chalk": "^1.1.3",
"connect-redis": "^3.4.2",
"cors": "^2.8.1",
"countly-sdk-nodejs": "^19.8.0",
"crypto-random-string": "^3.0.1",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"express-winston": "^3.3.0",
"hbs": "^4.0.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.6.11",
"node-machine-id": "^1.1.12",
"nodemailer": "^6.3.0",
"passport": "^0.4.0",
"passport-anonymous": "^1.0.1",
"passport-auth0": "^1.2.1",
"passport-azure-ad": "^4.1.0",
"passport-github": "^1.1.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"query-to-mongo": "^0.7.0",
"redis": "^2.8.0",
"shortid": "^2.2.13",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0",
"ws": "^6.2.1"
},
"devDependencies": {
"@semantic-release/exec": "^3.3.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-subset": "^1.6.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^6.2.2",
"mongodb-memory-server": "^6.0.1",
"nyc": "^15.0.0",
"redis-mock": "^0.46.0",
"semantic-release": "^15.13.24",
"sinon": "^8.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}