-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
executable file
·110 lines (110 loc) · 4.06 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
{
"name": "voyager",
"version": "0.45.0",
"description": "Smithsonian DPO Voyager - 3D Explorer and Tool Suite",
"scripts": {
"start": "npm run server",
"server": "nodemon services/server/bin/index.js",
"watch": "concurrently \"cd source/client && webpack --watch --env=app=story\" \"tsc -p source/server -w\" \"nodemon services/server/bin/index.js\"",
"build-dev": "cd source/client; webpack --mode=development --env=app=all; cd ../..",
"build-dev-local": "cd source/client; webpack --mode=development --env=app=all --local=true; cd ../..",
"build-prod": "cd source/client; webpack --mode=production --env=app=all; cd ../..",
"build-prod-local": "cd source/client; webpack --mode=production --env=app=all --local=true; cd ../..",
"build-server": "tsc -p source/server",
"build-libs": "tsc -b libs",
"docs": "cd docs && jekyll build",
"doc": "typedoc --name \"Smithsonian Voyager\" --exclude \"**/node_modules/**\" --ignoreCompilerErrors --mode file --target ES6 --theme minimal --out doc/ source/",
"test": "echo \"Error: no test specified\" && exit 1",
"up": "docker-compose up -d & docker-compose logs -f",
"down": "docker-compose stop & docker-compose rm -f -v",
"restart": "docker-compose stop & docker-compose rm -f -v; docker-compose up -d; docker-compose logs -f",
"bash": "docker-compose exec server bash",
"build": "docker-compose exec server bash -i -c 'source ~/.bashrc; npm run build-dev; npm run build-prod'"
},
"nodemonConfig": {
"delay": 1000,
"watch": [
"services/server/bin",
"node_modules/@ff/core",
"node_modules/@ff/server"
]
},
"engines": {
"node": ">=14.15.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Smithsonian/dpo-voyager.git"
},
"contributors": [
{
"name": "Ralph Wiedemeier",
"url": "https://github.com/framefactory"
},
{
"name": "Jamie Cope"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Smithsonian/dpo-voyager/issues"
},
"homepage": "https://github.com/Smithsonian/dpo-voyager#readme",
"dependencies": {
"ajv": "^8.6.2",
"buffer": "^6.0.3",
"client-zip": "^2.0.0",
"clone-deep": "^4.0.1",
"express": "^4.21.0",
"filenamify": "^4.3.0",
"handlebars": "^4.7.7",
"hotkeys-js": "^3.8.7",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.31",
"process": "^0.11.10",
"readable-stream": "^3.6.0",
"resolve-pathname": "^3.0.0",
"sanitize-html": "^2.5.1",
"simple-dropzone": "^0.8.3",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"three": "^0.168.0",
"tinymce": "^6.3.1",
"toposort": "^2.0.2",
"webdav": "^5.7.1",
"webdav-server": "^2.6.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^14.0.26",
"@types/three": "^0.168.0",
"chai": "^4.3.8",
"concurrently": "^6.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"dotenv": "^10.0.0",
"handlebars-loader": "^1.7.3",
"html-webpack-plugin": "^5.3.2",
"license-checker": "^25.0.1",
"mini-css-extract-plugin": "^2.2.0",
"mocha": "^10.2.0",
"raw-loader": "^4.0.2",
"sass": "^1.77.5",
"sass-loader": "^13.3.3",
"source-map-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.5.1",
"typedoc": "^0.22.11",
"typescript": "^4.3.5",
"typescript-json-schema": "^0.50.1",
"webpack": "^5.88.1",
"webpack-cli": "^4.9.2"
}
}