-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.38 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
42
43
44
45
46
47
{
"name": "node-occ-sample",
"description": "node-occ sample web application",
"version": "0.1.2",
"private": false,
"scripts": {
"build": "node ./node_modules/webpack/bin/webpack.js",
"start": "node ./node_modules/webpack/bin/webpack.js; node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openwebcad/node-occ-sample.git"
},
"author": "Etienne Rossignon",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"compression": "^1.6.2",
"connect-multiparty": "^2.0.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.3",
"ejs": "*",
"errorhandler": "^1.5.0",
"express": "4.15.3",
"express-session": "^1.15.3",
"file-utils": "*",
"formidable": "^1.1.1",
"method-override": "^2.3.9",
"moment": "^2.18.1",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"node-occ-csg-editor": "git+https://github.com/OpenWebCAD/node-occ-csg-editor.git#master",
"node-occ-geomview": "git+https://github.com/OpenWebCAD/node-occ-geomview.git#master",
"stack-trace": "*",
"static-favicon": "^2.0.0-alpha"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.19.0",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
}
}