-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.06 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
{
"name": "react-cornerstone-viewport-hooks",
"version": "1.9.2",
"description": "react cornerstone viewport component (with hooks)",
"author": "wheresvic",
"license": "MIT",
"repository": "git@github.com:usb-radiology/react-cornerstone-viewport-hooks.git",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs --css-modules false",
"start": "microbundle-crl watch --no-compress --format modern,cjs --css-modules false",
"prepare": "run-s build",
"test": "run-s test:lint test:mocha",
"test:mocha": "mocha 'src/**/*.test.*' --require esm",
"test:lint": "eslint ./src",
"predeploy": "cd example && npm install && npm run build"
},
"peerDependencies": {
"cornerstone-core": "2.6.x",
"cornerstone-math": "0.1.x",
"cornerstone-tools": "6.0.x",
"cornerstone-wado-image-loader": "3.3.x",
"hammerjs": "2.0.8",
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"dependencies": {
"date-fns": "2.29.3",
"dicom-parser": "1.8.19",
"npm-run-all": "4.1.5"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@babel/preset-react": "7.18.6",
"chai": "4.3.7",
"cornerstone-core": "2.6.1",
"cornerstone-math": "0.1.10",
"cornerstone-tools": "6.0.8",
"cornerstone-wado-image-loader": "3.3.2",
"cross-env": "7.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-react": "12.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"esm": "3.2.25",
"hammerjs": "2.0.8",
"microbundle-crl": "0.13.11",
"mocha": "10.1.0",
"prettier": "2.7.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"files": [
"dist"
]
}