-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.55 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
{
"name": "@deephaven/js-plugin-template",
"version": "0.2.0",
"description": "Deephaven plugin template",
"keywords": [
"Deephaven",
"plugin",
"deephaven-js-plugin"
],
"author": "Deephaven Data Labs LLC",
"license": "Apache-2.0",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"clean": "rimraf dist/*",
"lint": "eslint './src/**/*.{js,jsx,ts,tsx}' --quiet",
"start": "vite build --watch",
"test": "jest --watchAll"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@deephaven/components": "^0.46.0",
"@deephaven/dashboard": "^0.46.0",
"@deephaven/dashboard-core-plugins": "^0.46.0",
"@deephaven/golden-layout": "^0.46.0",
"@deephaven/grid": "^0.46.0",
"@deephaven/iris-grid": "^0.46.0",
"@deephaven/jsapi-types": "^0.46.0",
"@deephaven/jsapi-utils": "^0.46.0",
"@deephaven/log": "^0.46.0",
"@deephaven/prettier-config": "^0.46.0",
"@deephaven/stylelint-config": "^0.46.0",
"@deephaven/tsconfig": "^0.46.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"babel-loader": "^8.2.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.4.5",
"prettier": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"rimraf": "^3.0.2",
"sass": "^1.60.0",
"shortid": "^2.2.16",
"typescript": "~4.9.4",
"vite": "~4.1.4"
},
"peerDependencies": {
"@deephaven/components": "^0.46.0",
"@deephaven/dashboard": "^0.46.0",
"@deephaven/dashboard-core-plugins": "^0.46.0",
"@deephaven/golden-layout": "^0.46.0",
"@deephaven/grid": "^0.46.0",
"@deephaven/iris-grid": "^0.46.0",
"@deephaven/jsapi-types": "^0.46.0",
"@deephaven/jsapi-utils": "^0.46.0",
"@deephaven/log": "^0.46.0",
"@deephaven/redux": "^0.46.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4"
},
"prettier": "@deephaven/prettier-config",
"stylelint": {
"ignoreFiles": [
"node_modules",
"*.*",
"!*.scss"
],
"extends": [
"@deephaven/stylelint-config"
]
}
}