-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
120 lines (120 loc) · 3.09 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
110
111
112
113
114
115
116
117
118
119
120
{
"name": "synbiohub",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"async": "^0.9.2",
"autocomplete": "0.0.1",
"axios": "^0.21.1",
"babelify": "^10.0.0",
"binary-split": "^1.0.3",
"body-parser": "^1.15.0",
"browserify-middleware": "^8.1.1",
"byline": "^5.0.0",
"cheerio": "^1.0.0-rc.2",
"connect-flash": "^0.1.1",
"connect-sequelize": "^2.0.2",
"cookie-parser": "^1.4.1",
"cors": "^2.8.5",
"crypto-random-string": "^3.0.1",
"deepmerge": "^2.2.1",
"doi-regex": "^0.1.4",
"dom-delegator": "^13.1.0",
"edam-ontology": "^1.1.0",
"escape-html": "^1.0.3",
"escape-string-regexp": "^1.0.3",
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.13.4",
"express-session": "^1.13.0",
"express-sse": "^0.5.1",
"extend": "^3.0.0",
"fast-sort": "^1.5.6",
"file-type": "^10.6.0",
"filesize": "^3.6.0",
"formidable": "^1.2.2",
"http-proxy": "^1.18.1",
"husky": "^1.3.1",
"joi": "^14.3.1",
"less-middleware": "^3.0.1",
"lint-staged": "^8.1.0",
"main-loop": "^3.4.0",
"mime-types": "^2.1.26",
"mkdirp": "^1.0.4",
"mkdirp-promise": "^5.0.1",
"moment": "^2.24.0",
"multer": "^1.1.0",
"multimap": "^1.0.2",
"multiparty": "^4.1.3",
"mv": "^2.1.1",
"mz": "^2.6.0",
"passport": "^0.4.1",
"pg-escape": "^0.2.0",
"popups": "^1.1.3",
"pug": "^0.1.0",
"rdf-ext": "^0.3.0",
"rdf-graph-abstract": "^0.3.0",
"rdf-parser-rdfxml": "^0.3.0-rc1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"read-chunk": "^2.1.0",
"request": "^2.79.0",
"sboljs": "^2.2.6",
"sendgrid": "^5.2.3",
"sequelize": "^3.32.1",
"sequence-formatter": "^1.0.0",
"sha1": "^1.1.1",
"sha1-stream": "^1.0.1",
"simple-git": "^1.92.0",
"sparqljs": "^1.3.0",
"sqlite3": "^5.0.2",
"stream-meter": "^1.0.4",
"stream-to-string": "^1.1.0",
"strip-ansi-stream": "^1.0.0",
"striptags": "^3.2.0",
"tmp-promise": "^1.0.3",
"trie-search": "^1.0.0",
"umzug": "^2.2.0",
"underscore": "^1.8.0",
"uuid": "^3.2.1",
"validator": "^10.9.0",
"value-event": "^5.1.1",
"virtual-dom": "^2.1.1",
"visbol": "^2.0.17",
"visbol-react": "^1.0.68",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.8.0",
"xml2js": "^0.4.10",
"xtend": "^4.0.2"
},
"devDependencies": {},
"authDependencies": {
"google": "passport-google-oauth@~2.0.0"
},
"engines": {
"node": ">=11.0.0"
},
"scripts": {
"start": "forever synbiohub.js 2>&1 | tee -a synbiohub.log",
"dev": "nodemon synbiohub.js 2>&1 | tee -a synbiohub.log"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css}": [
"eslint --fix",
"git add"
]
},
"main": "synbiohub.js"
}