forked from Smithsonian/dpo-voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.89 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
{
"name": "voyager",
"version": "0.1.1",
"description": "Smithsonian DPO Voyager - 3D Explorer and Tool Suite",
"scripts": {
"start": "npm run server",
"server": "nodemon services/server/bin/index.js",
"watch": "APP_VERSION=$(git describe --tags); concurrently \"cd source/client && webpack --watch --app=story --vers=$APP_VERSION\" \"tsc -b source/server -w\" \"nodemon services/server/bin/index.js\"",
"build": "concurrently \"npm run build-server\" \"npm run build-dev\"",
"build-all": "npm run build-dev; npm run build-prod",
"build-dev": "APP_VERSION=$(git describe --tags); cd source/client; webpack --mode=development --app=all --vers=$APP_VERSION; cd ../..",
"build-dev-local": "APP_VERSION=$(git describe --tags); cd source/client; webpack --mode=development --app=all --local=true --vers=$APP_VERSION; cd ../..",
"build-prod": "APP_VERSION=$(git describe --tags); cd source/client; webpack --mode=production --app=all --vers=$APP_VERSION; cd ../..",
"build-prod-local": "APP_VERSION=$(git describe --tags); cd source/client; webpack --mode=production --app=all --local=true --vers=$APP_VERSION; cd ../..",
"build-server": "tsc -b 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/code/ 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"
},
"nodemonConfig": {
"delay": "1000",
"watch": [
"services/server/bin",
"node_modules/@ff/core",
"node_modules/@ff/server"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/framelab/voyager.git"
},
"contributors": [
{
"name": "Ralph Wiedemeier",
"url": "https://github.com/framelab"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/framelab/voyager/issues"
},
"homepage": "https://github.com/framelab/voyager#readme",
"dependencies": {
"ajv": "^6.10.2",
"express": "^4.17.1",
"filenamify": "^4.1.0",
"fs-extra": "^8.1.0",
"hotkeys-js": "^3.6.12",
"lit-element": "^2.2.0",
"lit-html": "^1.1.1",
"madge": "^3.4.4",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"quill": "^1.3.6",
"quill-image-resize-module": "^3.0.0",
"resolve-pathname": "^3.0.0",
"three": "^0.106.2",
"webdav": "^2.9.1",
"webdav-server": "^2.4.6",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^11.13.18",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"concurrently": "^4.1.1",
"css-loader": "^3.1.0",
"handlebars-loader": "^1.7.1",
"html-webpack-plugin": "^3.2.0",
"license-checker": "^25.0.1",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"raw-loader": "^3.1.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^1.3.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.3",
"typescript-json-schema": "^0.38.3",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^3.7.0"
}
}