forked from mcneel/compute.rhino3d.appserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
{
"name": "@mcneel/compute.rhino3d.appserver",
"version": "0.1.11",
"keywords": [
"node.js",
"expressjs",
"compute.rhino3d",
"rhino3d",
"rhino3dm",
"grasshopper3d"
],
"description": "A node.js/expressjs server which communicates to a rhino3d compute geometry server to remote solve Grasshopper definitions.",
"homepage": "https://www.rhino3d.com/compute",
"repository": {
"type": "git",
"url": "https://github.com/mcneel/compute.rhino3d.appserver"
},
"bugs": {
"url": "https://github.com/mcneel/compute.rhino3d.appserver/issues"
},
"author": {
"name": "Robert McNeel & Associates"
},
"contributors": [
{
"name": "Luis E. Fraguada",
"email": "luis@mcneel.com",
"url": "https://github.com/fraguada"
}
],
"license": "MIT",
"preferGlobal": true,
"engines": {
"node": ">=12.18.x"
},
"main": "./bin/www",
"bin": {
"compute-rhino3d-appserver": ".src/bin/www"
},
"scripts": {
"start": "node ./src/bin/www",
"lint": "eslint src/*.js --fix && eslint src/routes/*.js --fix && eslint src/bin/www --fix",
"start-args": "node ./src/bin/www --computeUrl http://localhost:8081/"
},
"dependencies": {
"camelcase-keys": "^6.2.2",
"compression": "1.7.4",
"compute-rhino3d": "^0.12.0",
"cors": "2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"hbs": "^4.1.1",
"http-errors": "~1.6.3",
"md5-file": "5.0.0",
"memjs": "^1.2.2",
"morgan": "~1.9.1",
"node-cache": "^5.1.1",
"node-fetch": "^2.6.0",
"rhino3dm": "0.13.0",
"throng": "4.0.0"
},
"devDependencies": {
"eslint": "7.5.0"
}
}