mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 21:05:22 +01:00
71 lines
2.3 KiB
JSON
71 lines
2.3 KiB
JSON
{
|
|
"name": "jsketcher",
|
|
"version": "0.1.0",
|
|
"description": "JS.Sketcher is a parametric 2D and 3D CAD modeler written in pure javascript",
|
|
"scripts": {
|
|
"start": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.js --content-base web/ --port 3000 --host 0.0.0.0",
|
|
"start-test": "node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config webpack.config.dev.js --content-base web/ --port 3000 --host 0.0.0.0",
|
|
"pack": "node ./node_modules/webpack/bin/webpack.js --config webpack.config.js --progress --profile --colors",
|
|
"build": "grunt",
|
|
"lint": "eslint web/app"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/xibyte/jsketcher.git"
|
|
},
|
|
"keywords": [
|
|
"parametric",
|
|
"cad"
|
|
],
|
|
"author": "Val Erastov <xibyte@gmail.com> (http://github.com/xibyte)",
|
|
"license": "AGPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/xibyte/jsketcher/issues"
|
|
},
|
|
"homepage": "https://github.com/xibyte/jsketcher",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.4.4",
|
|
"@babel/core": "^7.4.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.4.4",
|
|
"@babel/plugin-proposal-decorators": "^7.4.4",
|
|
"@babel/preset-env": "^7.4.5",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"@babel/preset-stage-2": "^7.0.0",
|
|
"babel-eslint": "^10.0.2",
|
|
"babel-loader": "^8.0.4",
|
|
"babel-plugin-transform-decorators-legacy": "^1.3.5",
|
|
"babel-polyfill": "^6.26.0",
|
|
"css-loader": "0.28.7",
|
|
"eslint": "4.13.1",
|
|
"eslint-plugin-babel": "4.1.2",
|
|
"eslint-plugin-import": "2.8.0",
|
|
"eslint-plugin-react": "7.5.1",
|
|
"grunt": "^1.0.4",
|
|
"grunt-contrib-copy": "1.0.0",
|
|
"less-loader": "^4.1.0",
|
|
"style-loader": "0.13.1",
|
|
"webpack": "^4.26.1",
|
|
"webpack-cli": "^3.1.2",
|
|
"webpack-dev-server": "^3.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@dagrejs/graphlib": "^2.1.4",
|
|
"classnames": "2.2.5",
|
|
"clipper-lib": "6.2.1",
|
|
"diff-match-patch": "1.0.0",
|
|
"earcut": "2.1.1",
|
|
"handlebars": "^4.1.2",
|
|
"handlebars-loader": "1.7.1",
|
|
"jquery": "^3.4.1",
|
|
"less": "^3.8.1",
|
|
"libtess": "1.2.2",
|
|
"mousetrap": "1.6.1",
|
|
"numeric": "1.2.6",
|
|
"prop-types": "15.6.0",
|
|
"react": "^16.4.0",
|
|
"react-dom": "^16.4.0",
|
|
"sprintf": "0.1.5",
|
|
"three": "0.89.0"
|
|
}
|
|
}
|