-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.76 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.76 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
38
39
40
41
{
"name": "scan2cad-annotation-app",
"version": "2.0.0",
"description": "Javascript annotation app for scan2cad alignments.",
"main": "client/build/Scan2CAD.bundle.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"browserify-css": "^0.14.0",
"react-bootstrap": "^0.31.3",
"watchify": "^3.11.0"
},
"dependencies": {
"csv-parse": "^2.5.0",
"d3": "^4.10.0",
"mongodb": "^2.2.30",
"numeric": "^1.2.6",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-js-pagination": "^3.0.2",
"react-paginate": "^5.2.3",
"react-table": "^6.5.3",
"setimmediate": "^1.0.5",
"three": "^0.86.0"
},
"scripts": {
"build": "mkdir -p ./client/build && browserify ./client/js/apps/Retriever/Retriever.js ./client/js/apps/Scan2CAD/Scan2CAD.js ./client/js/apps/KeypointAligner/KeypointAligner.js ./client/js/apps/Scan2CADMenu/Scan2CADMenu.js ./client/js/apps/SceneViewer/SceneViewer.js ./client/js/lib/Engine.js --standalone MTurkAligner -o ./client/build/Scan2CAD.bundle.js -t [ babelify --presets [ es2015 react ] ]",
"watch": "mkdir -p ./client/build && watchify ./client/js/apps/Retriever/Retriever.js ./client/js/apps/Scan2CAD/Scan2CAD.js ./client/js/apps/KeypointAligner/KeypointAligner.js ./client/js/apps/Scan2CADMenu/Scan2CADMenu.js ./client/js/apps/SceneViewer/SceneViewer.js ./client/js/lib/Engine.js --standalone MTurkAligner -o ./client/build/Scan2CAD.bundle.js -t [ babelify --presets [ es2015 react ] ] --debug --verbose"
},
"repository": {
"type": "",
"url": ""
},
"author": "Armen Avetisyan",
"license": "ISC"
}