-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.15 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.15 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
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
{
"name": "slim",
"version": "0.45.3",
"private": true,
"author": "ImagingDataCommons",
"packageManager": "bun@latest",
"scripts": {
"start": "rm -rf ./node_modules/.cache/default-development && ./scripts/set-git-env.sh craco start",
"dev": "bun run start",
"typecheck": "tsc --noEmit",
"build": "./scripts/set-git-env.sh craco build",
"build:firebase": "REACT_APP_CONFIG=gcp PUBLIC_URL=/ ./scripts/set-git-env.sh craco build",
"lint": "biome check .",
"lint:strict": "eslint --config .eslintrc.strict.cjs src/",
"lint:fix": "biome check --write --unsafe .",
"fmt": "biome format --write .",
"format": "biome format --write .",
"test": "biome check . && craco test --watchAll=false",
"test:bun": "bun test",
"predeploy": "REACT_APP_CONFIG=demo PUBLIC_URL='https://imagingdatacommons.github.io/slim/' ./scripts/set-git-env.sh craco build",
"deploy": "gh-pages -d build",
"clean": "rm -rf ./build ./node_modules",
"prepare": "husky"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"antd": "^4.22.8",
"classnames": "^2.2.6",
"dcmjs": "^0.35.0",
"detect-browser": "^5.2.1",
"dicom-microscopy-viewer": "^0.48.21",
"dicomweb-client": "0.10.3",
"oidc-client": "^1.11.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^3.11.0",
"react-router-dom": "^6.3.0",
"retry": "^0.13.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@biomejs/biome": "^2.0.0",
"@craco/craco": "^6.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^7.1.2",
"@types/d3-dispatch": "3.0.6",
"@types/jest": "^28.1.3",
"@types/lodash": "^4.17.20",
"@types/node": "^14.14.9",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-router-dom": "^5.3.3",
"@types/retry": "^0.12.1",
"@types/uuid": "^8.3.0",
"ajv": "6.12.6",
"copy-webpack-plugin": "9.1.0",
"craco-less": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-sonarjs": "^0.25.0",
"gh-pages": "^5.0.0",
"happy-dom": "^20.8.7",
"husky": "^9.1.7",
"react-scripts": "5.0.0",
"react-test-renderer": "^18.2.0",
"semantic-release": "21.1.2",
"sonarqube-scanner": "^4.3.0",
"typescript": "^4.7.4"
},
"overrides": {
"@types/d3-dispatch": "3.0.6",
"nth-check": "2.0.1",
"wrap-ansi": "7.0.0",
"make-dir": "3.1.0",
"express": "4.21.0",
"rollup": "3.29.5",
"semver": "7.5.2"
}
}