forked from biowonks/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.62 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.62 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
{
"name": "mist-api",
"version": "3.0.2",
"description": "RESTful API to the MiST database",
"main": "index.js",
"scripts": {
"setup-docs": "cd src/docs; yarn && yarn run build",
"build-docs": "cd src/docs; yarn run build",
"merge-deps": "node ../bin/merge-deps.js -i ../core-lib/package.json ../seqdepot-lib/src/models/package.json ../mist-lib/package.json ./package.json",
"preinstall": "yarn merge-deps",
"postinstall": "yarn setup-docs",
"eslint": "eslint 'src/**/*.js'",
"eslint:fix": "yarn eslint --fix",
"cover": "nyc yarn test",
"test": "find src -path src/docs -prune -o -name '*.tests.js' -print | NODE_PATH=node_modules xargs mocha -r ../_common/test.globals.js",
"debug": "NODE_PATH=node_modules node src/app.js | bunyan",
"start": "NODE_PATH=node_modules node src/start-api.js | bunyan",
"stop": "pm2 stop mist-api",
"monitor": "pm2 monit mist-api",
"logs": "pm2 logs --raw mist-api | bunyan"
},
"pre-commit": [
"eslint"
],
"author": "BioWonks",
"contributors": [
{
"name": "Luke Ulrich"
},
{
"name": "Ogun Adebali"
},
{
"name": "Davi Ortega"
},
{
"name": "Amit Upadhyay"
}
],
"license": "MIT",
"dependencies": {
"body-parser": "1.19.0",
"bunyan": "1.8.14",
"commander": "6.2.0",
"compression": "1.7.4",
"corser": "2.0.1",
"duplex-child-process": "1.0.1",
"express": "4.17.1",
"helmet": "4.2.0",
"http-shutdown": "1.2.2",
"inflection": "1.10.0",
"lodash": "4.17.20",
"mkdirp": "1.0.4",
"moment": "2.29.1",
"mv": "2.1.1",
"newrelic": "^7.0.2",
"node-config-loader": "https://github.com/lukeulrich/node-config-loader.git",
"on-headers": "^1.0.2",
"path-routify": "https://github.com/lukeulrich/path-routify.git",
"pg": "8.4.2",
"pm2": "^4.5.1",
"public-ip": "4.0.2",
"pumpify": "2.0.1",
"request": "2.88.2",
"request-promise": "4.2.6",
"response-time": "^2.3.1",
"rimraf": "3.0.2",
"sequelize": "6.3.5",
"sequelize-migrator": "https://github.com/lukeulrich/sequelize-migrator.git",
"sequelize-model-loader": "https://github.com/lukeulrich/sequelize-model-loader.git",
"split": "1.0.1",
"through2": "4.0.2",
"universal-analytics": "0.4.23",
"validator": "^13.5.2",
"xml2js": "0.4.23"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.12.1",
"httpsnippet": "^1.24.0",
"mocha": "^8.2.1",
"nock": "^13.0.5",
"node-mocks-http": "^1.9.0",
"nyc": "^15.1.0",
"pre-commit": "^1.1.3",
"sinon": "^9.2.1",
"supertest": "^6.0.1",
"temp": "^0.9.4"
}
}