-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.5 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "stac-browser",
"version": "0.6.2",
"private": true,
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "set NODE_ENV=production && parcel build --target=browser index.html",
"clean": "",
"deploy-prerendered": "npm run clean && npm run build && bin/prerender.js -p $STAC_URL $CATALOG_URL && netlify deploy --prod --dir dist/ --site $NETLIFY_SITE_ID",
"deploy": "npm run clean && npm run build && netlify deploy --prod --dir dist/ --site $NETLIFY_SITE_ID",
"start": "npm run clean && parcel --target=browser index.html"
},
"author": "Seth Fitzsimmons <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"ajv": "^6.10.2",
"bootstrap-vue": "^2.0.2",
"bs58": "^4.0.1",
"clone": "^2.1.2",
"command-line-args": "^5.1.1",
"commonmark": "^0.29.0",
"d3-scale-chromatic": "^1.5.0",
"es6-promise": "^4.2.8",
"fs-extra": "^8.1.0",
"hash.js": "^1.1.7",
"jquery": "^3.4.1",
"json-query": "^2.2.2",
"leaflet": "^1.5.1",
"leaflet-easybutton": "^2.4.0",
"lodash.escape": "^4.0.1",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"node-fetch": "^2.6.0",
"p-map": "^3.0.0",
"p-queue": "^6.1.1",
"spdx-license-ids": "^3.0.5",
"spdx-to-html": "^0.3.2",
"v-clipboard": "^2.2.2",
"vue": "^2.6.12",
"vue-async-computed": "^3.7.0",
"vue-hot-reload-api": "^2.3.4",
"vue-meta": "^2.2.2",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.1.3",
"vuex": "^3.1.1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@prerenderer/prerenderer": "^0.7.2",
"@prerenderer/renderer-puppeteer": "^0.2.0",
"@vue/component-compiler-utils": "^3.0.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.2.3",
"git-exec-and-restage": "^1.1.1",
"husky": "^3.0.5",
"lint-staged": "^9.3.0",
"netlify-cli": "^2.53.0",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"vue-template-compiler": "^2.6.12"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage eslint --fix --"
],
"*.css": [
"git-exec-and-restage prettier --write --"
],
"*.vue": [
"git-exec-and-restage eslint --fix --"
]
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}