-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 KB
/
package.json
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
48
49
50
51
52
{
"name": "openmct-hello",
"version": "4.0.0-next",
"description": "A template for developing a plugin for Open MCT.",
"main": "./dist/HelloPlugin.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"clean": "npx rimraf node_modules/",
"build": "webpack --config .webpack/webpack.prod.js",
"prepare": "npm run build",
"test": "echo 'WIP'",
"start": "webpack serve --config .webpack/webpack.dev.js"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nasa/openmct-hello.git"
},
"keywords": [
"openmct"
],
"author": "NASA Ames Research Center",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nasa/openmct-hello/issues"
},
"homepage": "https://github.com/nasa/openmct-hello#readme",
"devDependencies": {
"copy-webpack-plugin": "12.0.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-unicorn": "52.0.0",
"eslint-plugin-vue": "9.24.1",
"html-webpack-plugin": "5.6.0",
"openmct": "nasa/openmct",
"prettier": "3.2.5",
"prettier-eslint": "16.3.0",
"rimraf": "^5.0.5",
"source-map-loader": "5.0.0",
"vue": "3.4.21",
"vue-loader": "17.4.2",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "^5.10.0"
}
}