-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
132 lines (132 loc) · 3.96 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
124
125
126
127
128
129
130
131
132
{
"name": "@hpe.com/hew",
"version": "0.6.54",
"type": "module",
"scripts": {
"dev": "vite",
"start": "npm run dev",
"build": "rm -rf build && vite build && tsc-alias",
"prepare": "npm run build",
"test": "vitest",
"postversion": "git push && git push --tags",
"lint:eslint": "eslint -- \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:stylelint": "stylelint -- \"src/**/*.{css,less,scss}\"",
"prettier-write": "prettier --write './**/*.{js,cjs,mjs,ts,tsx,css,less,scss,md,json}'",
"prettier-check": "prettier --check './**/*.{js,cjs,mjs,ts,tsx,css,less,scss,md,json}'",
"format": "npm run lint:eslint --fix && npm run lint:stylelint --fix && npm run prettier-write"
},
"exports": {
".": {
"import": {
"types": "./build/types/index.d.ts",
"default": "./build/es/index.js"
},
"require": {
"types": "./build/types/index.d.ts",
"default": "./build/cjs/index.cjs"
}
},
"./Theme": {
"import": {
"types": "./build/types/kit/Theme/index.d.ts",
"default": "./build/es/kit/Theme/index.js"
},
"require": {
"types": "./build/types/kit/Theme/index.d.ts",
"default": "./build/cjs/kit/Theme/index.cjs"
}
},
"./*": {
"import": {
"types": "./build/types/kit/*.d.ts",
"default": "./build/es/kit/*.js"
},
"require": {
"types": "./build/types/kit/*.d.ts",
"default": "./build/cjs/kit/*.cjs"
}
}
},
"types": "./build/types/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./build/types/kit/*",
"./build/types/kit/*/index.d.ts"
]
}
},
"sideEffects": [
"*.css"
],
"dependencies": {
"@ant-design/icons": "^5.0.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-yaml": "^6.1.1",
"@glideapps/glide-data-grid": "^6.0.3",
"@uiw/react-codemirror": "^4.23.0",
"ansi-to-html": "^0.7.2",
"antd": "^5.1.7",
"dayjs": "^1.11.10",
"debug": "^4.3.4",
"fp-ts": "^2.16.9",
"io-ts": "^2.2.20",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.3.2",
"micro-observables": "^1.7.2",
"notebook": "file:vendor/notebook",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-virtuoso": "^4.6.2",
"screenfull": "^6.0.2",
"sprintf-js": "^1.1.3",
"throttle-debounce": "^5.0.0",
"uplot": "^1.6.18"
},
"devDependencies": {
"@hpe.com/vite-plugin-svg-to-jsx": "^1.0.4",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/lodash": "^4.14.199",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.8",
"@types/sprintf-js": "^1.1.2",
"@types/throttle-debounce": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react": "^1.1.7",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"fast-check": "^3.13.1",
"fast-glob": "^3.3.1",
"jsdom": "^22.1.0",
"magic-string": "^0.30.4",
"playwright": "^1.39.0",
"playwright-core": "^1.39.0",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.2.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2",
"vite": "^5.0.11",
"vite-plugin-checker": "^0.6.2",
"vite-tsconfig-paths": "^4.2.3",
"vitest": "^0.34.5"
}
}