mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
0d53898af9
* Move to webpack build * Use webpack for building openmct. Move SCSS to one folder and load all core css up front. Remove bower, begin removing gulp in favor of npm run. * Uses eslint instead of jshint and jscs. Merge style checking rules into .eshintrc.js, carrying over core parts of crockford style and our adaptations. Current code base fails to pass the linter, want to separate linter changes from fixes to linting rules. * Support for Vue SFC with example * Remove outdated examples * Use HTML loader for html (supports relative imports of resources e.g. images) and raw-loader for when javascript must be loaded as text.
95 lines
2.8 KiB
JSON
95 lines
2.8 KiB
JSON
{
|
|
"name": "openmct",
|
|
"version": "0.14.0-SNAPSHOT",
|
|
"description": "The Open MCT core platform",
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"angular": "1.4.14",
|
|
"angular-route": "1.4.14",
|
|
"babel-eslint": "8.2.6",
|
|
"comma-separated-values": "^3.6.4",
|
|
"concurrently": "^3.6.1",
|
|
"copy-webpack-plugin": "^4.5.2",
|
|
"css-loader": "^1.0.0",
|
|
"d3-array": "1.2.x",
|
|
"d3-axis": "1.0.x",
|
|
"d3-collection": "1.0.x",
|
|
"d3-color": "1.0.x",
|
|
"d3-format": "1.2.x",
|
|
"d3-interpolate": "1.1.x",
|
|
"d3-scale": "1.0.x",
|
|
"d3-selection": "1.3.x",
|
|
"d3-time": "1.0.x",
|
|
"d3-time-format": "2.1.x",
|
|
"eslint": "5.2.0",
|
|
"eventemitter3": "^1.2.0",
|
|
"exports-loader": "^0.7.0",
|
|
"express": "^4.13.1",
|
|
"fast-sass-loader": "^1.4.5",
|
|
"file-loader": "^1.1.11",
|
|
"file-saver": "^1.3.8",
|
|
"git-rev-sync": "^1.4.0",
|
|
"glob": ">= 3.0.0",
|
|
"html-loader": "^0.5.5",
|
|
"html2canvas": "^1.0.0-alpha.12",
|
|
"imports-loader": "^0.8.0",
|
|
"istanbul-instrumenter-loader": "^3.0.1",
|
|
"jasmine-core": "^3.1.0",
|
|
"jsdoc": "^3.3.2",
|
|
"karma": "^2.0.3",
|
|
"karma-chrome-launcher": "^2.2.0",
|
|
"karma-cli": "^1.0.1",
|
|
"karma-coverage": "^1.1.2",
|
|
"karma-html-reporter": "^0.2.7",
|
|
"karma-jasmine": "^1.1.2",
|
|
"karma-webpack": "^3.0.0",
|
|
"lodash": "^3.10.1",
|
|
"markdown-toc": "^0.11.7",
|
|
"marked": "^0.3.5",
|
|
"mini-css-extract-plugin": "^0.4.1",
|
|
"minimist": "^1.1.1",
|
|
"moment": "^2.11.1",
|
|
"moment-duration-format": "^2.2.2",
|
|
"moment-timezone": "^0.5.21",
|
|
"node-bourbon": "^4.2.3",
|
|
"node-sass": "^4.9.2",
|
|
"painterro": "^0.2.65",
|
|
"printj": "^1.1.0",
|
|
"raw-loader": "^0.5.1",
|
|
"request": "^2.69.0",
|
|
"screenfull": "^3.3.2",
|
|
"split": "^1.0.0",
|
|
"style-loader": "^0.21.0",
|
|
"v8-compile-cache": "^1.1.0",
|
|
"vue": "2.5.6",
|
|
"vue-loader": "^15.2.6",
|
|
"vue-template-compiler": "2.5.6",
|
|
"webpack": "^4.16.2",
|
|
"webpack-cli": "^3.1.0",
|
|
"webpack-dev-middleware": "^3.1.3",
|
|
"zepto": "^1.2.0"
|
|
},
|
|
"scripts": {
|
|
"start": "node app.js",
|
|
"lint": "eslint platform src openmct.js",
|
|
"lint:fix": "eslint platform src openmct.js --fix",
|
|
"build:prod": "NODE_ENV=production webpack",
|
|
"build:dev": "webpack",
|
|
"build:watch": "webpack --watch",
|
|
"test": "karma start --single-run",
|
|
"test:watch": "karma start --no-single-run",
|
|
"verify": "concurrently 'npm:test' 'npm:lint'",
|
|
"jsdoc": "jsdoc -c jsdoc.json -R API.md -r -d dist/docs/api",
|
|
"otherdoc": "node docs/gendocs.js --in docs/src --out dist/docs --suppress-toc 'docs/src/index.md|docs/src/process/index.md'",
|
|
"docs": "npm run jsdoc ; npm run otherdoc",
|
|
"prepare": "npm run build:prod"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nasa/openmct.git"
|
|
},
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"private": true
|
|
}
|