-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 2.36 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
{
"name": "crowds-cure-cancer",
"version": "0.1.0",
"description": "Web app for crowd-sourcing annotations on cancer imaging datasets",
"author": "crowds-cure",
"repository": "https://github.com/crowds-cure/cancer",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"cornerstone-core": "^2.3.0",
"cornerstone-math": "^0.1.8",
"cornerstone-tools": "brunoalvesdefaria/cornerstoneTools#bidirectional-magnify-improved-touch",
"cornerstone-wado-image-loader": "^2.2.2",
"dicom-parser": "^1.8.1",
"dicomweb-client": "^0.3.2",
"es5-shim": "^4.5.12",
"hammerjs": "^2.0.8",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"lodash.clonedeep": "^4.5.0",
"lodash.orderby": "^4.5.0",
"oidc-client": "^1.5.4",
"pouchdb-browser": "^7.0.0",
"pouchdb-find": "^7.0.0",
"prettier": "^1.14.3",
"promise-polyfill": "8.1.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-modal": "^3.6.1",
"react-paginate": "^6.0.0",
"react-redux": "^5.1.0",
"react-required-if": "^1.0.3",
"react-responsive": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.1",
"react-tooltip": "^3.9.0",
"react-transition-group": "^2.5.0",
"redux": "^4.0.1",
"rollbar": "^2.5.0",
"underscore": "^1.9.1",
"whatwg-fetch": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"copy:webworkers": "cp node_modules/cornerstone-wado-image-loader/dist/*.min.js* public",
"version": "node -p -e \"'export default \\'' + require('./package.json').version + '\\';'\" > src/version.js",
"sha": "echo \"export default '\"$(git rev-parse HEAD)\"';\" > src/sha.js",
"details": "npm run version && npm run sha",
"prep": "npm run details && npm run copy:webworkers",
"start": "npm run prep && react-scripts start",
"start:debug": "npm run prep && react-scripts --inspect start --no-cache --runInBand",
"build": "npm run prep && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}