forked from Smithsonian/dpo-cook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.44 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
{
"name": "dpo-cook",
"version": "1.0.0",
"description": "Smithsonian DPO Cook - 3D Model/Geometry/Texture Processing Service",
"scripts": {
"start": "pm2 start server/bin/index.js --name cook",
"stop": "pm2 delete cook",
"monitor": "pm2 monit",
"server": "node server/bin/index.js",
"watch": "npm run build & concurrently \"cd source/client && webpack --watch\" \"tsc -b source/server -w\" \"nodemon server/bin/index.js\"",
"build": "concurrently \"npm run build-server\" \"npm run build-client\"",
"build-client": "cd source/client && webpack && cd ../..",
"build-server": "tsc -b source/server",
"build-libs": "tsc -b libs",
"doc": "typedoc --name \"Smithsonian Cook\" --exclude \"**/node_modules/**\" --ignoreCompilerErrors --mode file --target ES6 --theme minimal --out doc/source/ source/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"nodemonConfig": {
"delay": "500",
"watch": [
"server/bin",
"server/recipes",
"node_modules/@ff"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Smithsonian/dpo-cook.git"
},
"contributors": [
{
"name": "Ralph Wiedemeier",
"url": "https://github.com/framelab"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Smithsonian/dpo-cook.git/issues"
},
"homepage": "https://github.com/Smithsonian/dpo-cook.git#readme",
"dependencies": {
"ajv": "^6.12.6",
"body-parser": "^1.19.1",
"clone-deep": "^4.0.1",
"cookie-parser": "^1.4.6",
"deep-equal": "^2.0.5",
"dotenv": "^8.6.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"filenamify": "^4.2.0",
"htmlparser2": "^6.0.1",
"jsonata": "^1.8.5",
"minimist": "^1.2.5",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"os-utils": "^0.0.14",
"react-json-tree": "^0.11.2",
"reactable": "^1.1.0",
"rimraf": "^3.0.2",
"socket.io": "^2.4.1",
"webdav-server": "^2.6.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/json-schema": "^7.0.7",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.3",
"@types/reactable": "^0.14.6",
"@types/socket.io": "^2.1.13",
"apidoc": "^0.50.3",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.3.4",
"comment-json": "^4.1.1",
"concurrently": "^7.0.0",
"css-loader": "^5.2.7",
"express-handlebars": "^6.0.2",
"fs-extra": "^9.1.0",
"highlight.js": "^10.7.1",
"markdown-table": "^2.0.0",
"mini-css-extract-plugin": "^2.4.6",
"mkdirp": "^0.5.5",
"mocha": "^9.1.3",
"node-sass": "^7.0.1",
"nodemon": "^2.0.15",
"pm2": "^5.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass-loader": "^12.4.0",
"source-map-loader": "^0.2.4",
"three": "^0.127.0",
"typedoc": "^0.22.11",
"typescript": "^3.9.10",
"webdav": "^4.8.0",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
}
}