forked from conditor-project/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
{
"name": "conditor-api",
"version": "1.0.0-beta.4",
"description": "Main api of the Conditor-project",
"main": "app.js",
"scripts": {
"start": "export NODE_ENV=production; npx view-config; forever start --killSignal SIGINT --uid conditor-api --id conditor-api -a -e ~/.forever/conditor-api.errors.log app.js --no-color",
"stop": "forever stop conditor-api",
"dev": "export NODE_ENV=development; npx view-config; nodemon app.js",
"test": "export NODE_ENV=test; npx view-config; mocha --recursive",
"test:helpers": "export NODE_ENV=test; npx view-config; mocha test/helpers --recursive",
"validate-config": "npx view-config; node ./bin/validateConfig.js",
"generate-token": "node ./bin/generate-token.js",
"cleanup-registry": "node ./bin/cleanup-registry.js",
"list-registry": "node ./bin/list-registry.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/conditor-project/api.git"
},
"keywords": [
"api",
"conditor",
"ist",
"node"
],
"author": "conditor team",
"license": "CeCILL",
"bugs": {
"url": "https://github.com/conditor-project/api/issues"
},
"homepage": "https://github.com/conditor-project/api#readme",
"dependencies": {
"archiver": "^2.1.1",
"async": "^2.6.0",
"bluebird": "^3.5.1",
"bodybuilder": "^2.2.10",
"co-config": "git+https://github.com/conditor-project/co-config.git",
"colors": "^1.2.1",
"compression": "^1.7.2",
"config-component": "git+https://github.com/Inist-CNRS/node-config-component.git",
"elasticsearch": "^14.2.1",
"elasticsearch-scroll-stream": "^1.1.3",
"express": "^4.16.3",
"file-stream-rotator": "^0.2.1",
"forever": "^0.15.3",
"fs-extra": "^5.0.0",
"helmet": "^3.12.0",
"ip-address": "^5.8.9",
"joi": "^13.2.0",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"lucene-query-parser": "^1.2.0",
"mocha": "^5.0.5",
"moment-duration-format": "^2.2.2",
"morgan": "^1.9.0",
"nanoid": "^1.0.2",
"semver": "^5.5.0",
"should": "^13.2.1",
"supertest": "^3.0.0",
"unzipper": "^0.8.12"
},
"devDependencies": {
"nodemon": "^1.17.2"
}
}