-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
119 lines (119 loc) · 3.56 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
{
"name": "@dxos/console-app",
"version": "1.3.5",
"description": "Console App.",
"homepage": "https://github.com/dxos/console#readme",
"bugs": {
"url": "https://github.com/dxos/console/issues"
},
"repository": "https://github.com/dxos/console",
"license": "AGPL-3.0",
"author": "DXOS.org",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"book": "esbuild-server book 'stories/**/*.{stories,story}.tsx'",
"build": "tsc --noEmit && esbuild-server build",
"ci": "npm run build && npm run lint && npm run test",
"clean": "rm -rf ./dist",
"debug": "webpack serve --mode development --host 0.0.0.0 --config webpack-debug.config.js",
"lint": "eslint './src/**/*.{ts,tsx}'",
"start": "esbuild-server dev",
"test": "jest --rootDir ./src --verbose --passWithNoTests 2>&1"
},
"browserslist": [
"> 5%"
],
"eslintConfig": {
"extends": "plugin:@dxos/react"
},
"jest": {
"preset": "ts-jest/presets/default",
"testEnvironment": "node"
},
"dependencies": {
"@dxos/async": "~2.31.4",
"@dxos/bot-factory-client": "~2.31.4",
"@dxos/config": "~2.31.4",
"@dxos/gem-core": "^1.0.0-beta.35",
"@dxos/gem-spore": "^1.0.0-beta.35",
"@dxos/react-components": "~2.31.4",
"@dxos/react-registry-client": "~2.31.4",
"@dxos/registry-client": "~2.31.4",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.0",
"@mui/lab": "^5.0.0-alpha.51",
"@mui/material": "^5.0.0",
"@mui/styles": "^5.0.0",
"@mui/system": "^5.0.0",
"@mui/x-data-grid": "^5.0.0-beta.1",
"clsx": "^1.1.0",
"debug": "^4.1.1",
"ipfs-http-client": "^53.0.1",
"lodash.isequalwith": "^4.4.0",
"node-fetch": "~3.2.3",
"proper-url-join": "^2.1.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-json-tree": "^0.15.0",
"react-json-view": "^1.21.3",
"react-resize-aware": "^3.1.1",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"react-virtualized": "^9.22.3",
"semver": "^7.3.5",
"string-hash": "^1.1.3",
"superagent": "^6.1.0",
"uuid": "^8.3.2",
"@material-ui/core": "~4.12.3",
"@dxos/react-client": "~2.31.4",
"@dxos/crypto": "~2.31.4"
},
"devDependencies": {
"@dxos/esbuild-plugins": "2.28.7",
"@dxos/esbuild-server": "1.7.9",
"@dxos/eslint-plugin": "1.0.20",
"@types/faker": "^4.1.12",
"@types/jest": "^27.0.1",
"@types/proper-url-join": "^2.1.1",
"@types/react": "^17.0.22",
"@types/react-dom": "^17.0.9",
"@types/react-router": "^5.1.16",
"@types/react-router-dom": "^5.1.9",
"@types/react-virtualized": "^9.21.13",
"@types/semver": "^7.3.9",
"@types/string-hash": "^1.1.1",
"@types/superagent": "^4.1.10",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"copy-webpack-plugin": "^6.4.1",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.27.0",
"faker": "^4.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^27.1.0",
"js-yaml": "^4.1.0",
"ts-jest": "^27.0.5",
"ts-loader": "~8.1.0",
"typescript": "^4.5.2",
"webpack": "4.44.2",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"webpack-version-file-plugin": "^0.4.0",
"yaml": "^1.10.2",
"@types/debug": "~4.1.7",
"@babel/core": "^7.0.0"
},
"publishConfig": {
"access": "public"
}
}