-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.82 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.82 KB
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
{
"name": "@squonk/react-sci-components",
"type": "module",
"description": "Library of scientific components for use in Squonk Web Apps",
"module": "./src/index.ts",
"types": "./src/index.ts",
"publishConfig": {
"module": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"version": "2.0.0-dev.14",
"repository": "git@github.com:InformaticsMatters/react-sci-components.git",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/InformaticsMatters/react-sci-components/",
"scripts": {
"build": "tsup",
"start": "tsup --watch",
"setup": "node setup-entrypoints.js && cp package.json dist",
"type-check": "tsc --pretty --noEmit"
},
"devDependencies": {
"@emotion/react": "^11.7.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@squonk/data-manager-client": "^0.6.9-rc.1",
"@squonk/eslint-config": "^0.2.0",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"axios": "^0.24.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.5.1",
"react": "^18.1.0",
"react-dom": "^17.0.2",
"react-query": "^3.34.2",
"tslib": "^2.3.1",
"tsup": "^5.11.1",
"typescript": "^4.5.3"
},
"peerDependencies": {
"@material-ui/core": "4.x",
"@material-ui/icons": "4.x",
"@material-ui/lab": "4.x",
"@squonk/data-manager-client": ">=0.6.2-rc.8",
"axios": "^0.24.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.32.1"
}
}