forked from vega/editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.82 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
{
"name": "vega-editor",
"version": "0.36.2",
"homepage": "http://vega.github.io/editor",
"private": true,
"devDependencies": {
"@types/node": "^12.6.2",
"autoprefixer": "^9.6.1",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.18.2",
"style-loader": "^0.23.1",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.5.3",
"webpack": "4.35.3",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@types/react": "^16.8.23",
"@types/react-redux": "^7.1.1",
"ajv": "^6.10.1",
"d3-geo-projection": "^2.7.0",
"d3-request": "1.0.6",
"history": "^4.9.0",
"json-stringify-pretty-compact": "^2.0.0",
"lz-string": "^1.4.4",
"monaco-editor": "^0.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-clipboard.js": "^2.0.13",
"react-dom": "^16.8.6",
"react-feather": "^2.0.3",
"react-ga": "2.6.0",
"react-monaco-editor": "0.26.2",
"react-paginate": "^6.3.0",
"react-portal": "^4.2.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-select": "^3.0.4",
"react-split-pane": "^0.1.87",
"react-tooltip": "^3.10.0",
"redux": "^4.0.4",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0",
"tslib": "^1.10.0",
"vega-cli": "5.4.0",
"vega-datasets": "^1.25.0",
"vega-lite": "3.3.0",
"vega-schema-url-parser": "^1.1.0",
"vega-themes": "^2.3.0",
"vega-tooltip": "^0.17.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "webpack-dev-server --mode development --hot",
"start:production": "webpack-dev-server --mode production",
"build": "npm run clean && npm run vendor && webpack --mode production --progress",
"clean": "rm -rf dist public/spec public/data",
"postbuild": "rsync -r --ignore-existing public/* dist",
"generate-example-images": "./scripts/generate-example-images.sh",
"postinstall": "npm run vendor",
"vendor": "./scripts/vendor.sh",
"format": "tslint -p . --fix && prettier --write 'src/**/*.{ts,tsx,css}'",
"lint": "tslint -p . && prettier --check 'src/**/*.{ts,tsx,css}'",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"analyze": "webpack --mode production --profile --json > stats.json && webpack-bundle-analyzer stats.json"
}
}