-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
109 lines (109 loc) · 3.23 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
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
108
109
{
"name": "open-pryv.io",
"version": "1.9.2-1-open",
"private": true,
"description": "Pryv core server app components",
"homepage": "https://pryv.com",
"repository": {
"type": "git",
"url": "git://github.com/pryv/service-open-pryv.git"
},
"license": "BSD-3-Clause",
"author": "Pryv S.A. <[email protected]> (https://pryv.com)",
"workspaces": {
"packages": [
"components/*"
]
},
"scripts": {
"api": "LOGS=info NODE_ENV=production ./components/api-server/bin/server --config ./configs/api.yml",
"apibackloop": "LOGS=info NODE_ENV=production ./components/api-server/bin/server --config ./configs/api-backloop.yml",
"database": "DEVELOPMENT=true scripts/start-mongo",
"mail": "cd service-mail ; ./bin/server",
"pryv": "npm run database >> ./var-pryv/logs/mongodb.log & npm run mail >> ./var-pryv/logs/mail.log & npm run api",
"setup-dev-env": "scripts/setup-dev-env",
"test": "echo 'This project doesn’t use npm scripts – enter `just` for the available development commands\n' && exit 1"
},
"pre-commit": "",
"resolutions": {
"**/bl": "^2.2.1",
"**/ini": "^1.3.6",
"**/lodash": "^4.17.21",
"**/node-fetch": "^2.6.1",
"**/xmlhttprequest-ssl": "^1.6.2"
},
"dependencies": {
"@pryv/boiler": "https://github.com/pryv/pryv-boiler.git#semver:^1.2.4",
"@pryv/datastore": "https://github.com/pryv/pryv-datastore.git",
"@pryv/stable-object-representation": "^1.1.4",
"async": "^2.6.4",
"awaiting": "^3.0.0",
"axon": "2.0.x",
"backloop.dev": "latest",
"bcrypt": "^5.1.0",
"better-sqlite3": "^7.6.2",
"bluebird": "^3.5.0",
"body-parser": "^1.20.1",
"cls-hooked": "^4.2.2",
"cookie-parser": "^1.4.3",
"cron": "^2.1.0",
"cuid": "^2.1.8",
"express": "^4.18.2",
"fs-extra": "^10.1.0",
"fs-xattr": "^0.3.0",
"gm": "^1.25.0",
"heap": "^0.2.6",
"hjson": "^3.1.1",
"jaeger-client": "^3.18.1",
"lodash": "^4.17.4",
"lru-cache": "^7.14.1",
"mkdirp": "1.0.4",
"mongodb": "^4.11.0",
"morgan": "^1.8.1",
"msgpack5": "^6.0.2",
"multer": "^1.4.5-lts.1",
"multistream": "^4.1.0",
"opentracing": "^0.14.5",
"protobufjs": "^6.11.3",
"pryv": "^2.0.2",
"shimmer": "^1.2.0",
"slug": "^5.3.0",
"socket.io": "^4.6.1",
"socketio-wildcard": "^2.0.0",
"superagent": "^8.0.3",
"tchannel": "https://github.com/pryv/tchannel-node#v4.0.2",
"unix-dgram": "2.0.6",
"unix-timestamp": "^1.0.3",
"url": "^0.11.0",
"winston": "^3.8.2",
"winston-syslog": "^2.7.0",
"z-schema": "^5.0.4"
},
"devDependencies": {
"chai": "^4.3.7",
"chalk": "^4.1.2",
"charlatan": "^1.1.0",
"concurrently": "^7.6.0",
"date-utils": "latest",
"eslint": "^8.28.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.1.0",
"moment": "^2.29.4",
"mongodb-core": "^3.2.7",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"qs": "^6.11.0",
"should": "^13.2.3",
"sinon": "^14.0.2",
"socket.io-client": "^4.6.1",
"source-licenser": "^2.0.5",
"supertest": "^6.3.1",
"temp": "^0.9.4"
},
"engines": {
"node": "18.x"
}
}