-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 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
{
"name": "oni-express",
"version": "1.2.0",
"private": true,
"scripts": {
"build": "npm run portal:getAndBuild && npm install",
"start": "node ./bin/www",
"portal:getAndBuild": "npm run portal:get && npm run portal:build",
"portal:get": "rm -rf oni-portal && git clone -b v1.2.0 --single-branch --depth 1 https://github.com/UTS-eResearch/oni-portal.git",
"portal:build": "cd oni-portal && npm install && npm run build && cp -r dist ../portal && cd ..",
"d:attach": "docker exec -it oni-express_oni-express_1 /bin/bash",
"d:logs": "docker-compose logs -f",
"d:compose": "docker-compose up -d",
"d:build": "source docker-build.sh",
"d:stopAll": "source docker-stop-all.sh",
"d:start": "source docker-run.sh",
"d:clearIndex": "docker volume rm sf-solr_ocfl"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"connect-memcached": "^1.0.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-http-proxy": "^1.6.0",
"express-session": "^1.17.0",
"express-useragent": "^1.0.15",
"fs-extra": "^8.1.0",
"jwt-simple": "^0.5.6",
"morgan": "~1.9.1",
"nocache": "^2.1.0",
"oni-indexer": "^1.0.4",
"requests": "^0.3.0"
}
}