-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"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",
"format:all": "eslint --fix --cache .",
"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.5.0",
"@types/node": "24.12.2",
"@types/react": "^17.0.37",
"axios": "^0.24.0",
"eslint": "^8.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.2",
"tslib": "^2.3.1",
"tsup": "^5.11.1",
"typescript": "6.0.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"
}
}