You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/package.json

100 lines
3.5 KiB

7 years ago
{
"name": "xcad",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"dev2": "webpack-dev-server --config web-cad-view.config.ts",
7 years ago
"dts": "tcm src -o ./src/UI/css_dts",
"build": "npm run type && webpack --config dll.config.js &&webpack",
"build2": "webpack --config dll.config.js &&webpack --config web-cad-view.config.ts",
7 years ago
"i": "npm i && npm i -dev",
"test": "jest",
"ser": "node ./utils/server.js",
"type": "node ./utils/copy_type.js"
7 years ago
},
"private": true,
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dat-gui": "^0.6.3",
7 years ago
"@types/jest": "^21.1.5",
"@types/jquery": "^3.2.16",
"@types/lodash": "^4.14.80",
"@types/node": "^8.0.47",
"@types/react": "^16.0.19",
"@types/react-dom": "^16.0.2",
"@types/stats.js": "^0.16.1",
"@types/three": "^0.84.33",
"add-asset-html-webpack-plugin": "^2.1.2",
7 years ago
"awesome-typescript-loader": "^3.3.0",
"css-loader": "^0.28.7",
7 years ago
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
7 years ago
"html-webpack-plugin": "^2.30.1",
"jest": "^21.2.1",
7 years ago
"jest-environment-node-debug": "^2.0.0",
7 years ago
"less": "^2.7.3",
7 years ago
"less-loader": "^4.0.5",
"mobx-react-devtools": "^4.2.15",
"required-loader": "^1.3.16",
7 years ago
"source-map-loader": "^0.2.3",
"style-loader": "^0.19.0",
7 years ago
"ts-jest": "^21.1.4",
"typed-css-modules": "^0.3.1",
7 years ago
"typescript": "^2.6.1",
7 years ago
"typings": "^2.1.1",
"typings-for-css-modules-loader": "^1.7.0",
"url-loader": "^0.6.2",
"wallaby-webpack": "0.0.45",
"webpack": "^3.8.1",
7 years ago
"webpack-dev-server": "^2.9.4"
7 years ago
},
"dependencies": {
"@blueprintjs/core": "^1.32.0",
7 years ago
"css-element-queries": "^0.4.0",
"dat.gui": "^0.6.1",
"golden-layout": "^1.5.9",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"mobx": "^3.3.1",
7 years ago
"mobx-react": "^4.3.4",
"mobx-state-tree": "^1.1.0",
"react": "^16.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-color": "^2.13.8",
"react-dom": "^16.0.0",
7 years ago
"stats.js": "^0.17.0",
7 years ago
"three": "^0.88.0",
7 years ago
"verb-nurbs-web": "^2.1.3",
"xaop": "^1.1.9"
7 years ago
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__test__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"dat.gui": "<rootDir>/node_modules/dat.gui/build/dat.gui.js",
"three-FBXLoader": "<rootDir>/src/Loader/FBXLoader.js",
"zlib": "<rootDir>/node_modules/three/examples/js/libs/inflate.min.js",
"three-CopyShader": "<rootDir>/node_modules/three/examples/js/shaders/CopyShader.js",
"three-SMAAShader": "<rootDir>/node_modules/three/examples/js/shaders/SMAAShader.js",
"three-FXAAShader": "<rootDir>/node_modules/three/examples/js/shaders/FXAAShader.js",
"three-OutlinePass": "<rootDir>/src/GraphicsSystem/OutlinePass.js",
"three-EffectComposer": "<rootDir>/node_modules/three/examples/js/postprocessing/EffectComposer.js",
"three-RenderPass": "<rootDir>/node_modules/three/examples/js/postprocessing/RenderPass.js",
"three-ShaderPass": "<rootDir>/node_modules/three/examples/js/postprocessing/ShaderPass.js",
"three-SMAAPass": "<rootDir>/node_modules/three/examples/js/postprocessing/SMAAPass.js",
"three-Reflector": "<rootDir>/src/objects/Reflector.js"
}
7 years ago
}
}