-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathpackage.json
123 lines (123 loc) · 3.74 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "vega-editor",
"homepage": "http://vega.github.io/editor",
"author": {
"name": "Vega",
"url": "https://vega.github.io"
},
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"devDependencies": {
"@parcel/resolver-glob": "^2.12.0",
"@parcel/transformer-inline-string": "2.12.0",
"@types/node": "^22.13.14",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"assert": "^2.1.0",
"autoprefixer": "^10.4.21",
"browserify-zlib": "^0.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4",
"events": "^3.3.0",
"gh-pages": "^6.3.0",
"https-browserify": "^1.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"parcel": "^2.12.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.5.3",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typescript": "^5.8.2",
"url": "^0.11.4",
"util": "^0.12.5"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@reduxjs/toolkit": "^1.9.7",
"@tippyjs/react": "^4.2.6",
"@types/cytoscape": "^3.21.9",
"@types/d3": "^7.4.3",
"@types/react": "^17.0.44",
"@types/semver": "^7.5.8",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"cytoscape": "^3.31.1",
"cytoscape-popper": "^4.0.1",
"d3-array": "^3.2.4",
"d3-geo-projection": "^4.0.0",
"d3-scale": "^4.0.2",
"elkjs": "^0.10.0",
"history": "^5.3.0",
"json-stringify-pretty-compact": "^4.0.0",
"jsonc-parser": "^3.3.1",
"lz-string": "^1.5.0",
"monaco-editor": "^0.52.2",
"prettier2": "npm:prettier@^2.0.0",
"prop-types": "^15.8.1",
"rc-resize-observer": "^1.4.3",
"react": "^17.0.2",
"react-clipboard.js": "^2.0.16",
"react-dom": "^17.0.2",
"react-feather": "^2.0.10",
"react-paginate": "^8.3.0",
"react-portal": "^4.3.0",
"react-redux": "^8.1.3",
"react-router-dom": "^5.3.0",
"react-select": "^5.10.1",
"react-split-pane-r17": "^1.1.0",
"redux": "^4.2.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.4.2",
"tippy.js": "^6.3.7",
"tslib": "^2.8.1",
"vega-cli": "6.1.2",
"vega-datasets": "^3.0.1",
"vega-embed": "^7.0.2",
"vega-interpreter": "^2.0.0",
"vega-lite": "6.1.0",
"vega-schema-url-parser": "^3.0.2",
"vega-themes": "^3.0.0",
"vega-tooltip": "^1.0.0",
"vega-typings": "^2.0.1",
"web-worker": "^1.5.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "PARCEL_BUILD_COMMIT_HASH=$(git rev-parse HEAD) parcel --watch-dir .. index.html",
"build": "npm run clean && npm run vendor && npm run build:only",
"build:only": "PARCEL_BUILD_COMMIT_HASH=$(git rev-parse HEAD) parcel build --public-url /editor --no-scope-hoist index.html",
"clean": "rimraf dist public/spec public/data",
"postbuild": "rsync --ignore-existing -r public/* dist",
"generate-example-images": "scripts/generate-example-images.sh",
"vendor": "scripts/vendor.sh",
"prepare": "npm run vendor",
"prettierbase": "prettier '{src,public}/**/*.{css,html}'",
"format": "eslint . --fix && npm run prettierbase -- --write",
"lint": "eslint . && npm run prettierbase -- --check",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"postinstall": "husky && npx patch-package"
},
"@parcel/resolver-default": {
"packageExports": true
},
"staticFiles": {
"staticPath": "public"
}
}