-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.52 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
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
103
104
105
106
107
{
"name": "pwa-dicom-viewer",
"version": "1.0.0",
"description": "DICOM format viewer as PWA",
"main": "index.js",
"scripts": {
"test": "mocha-webpack --webpack-config config/webpack-test.config.js --reporter list \"test/**/*.test.{ts,tsx}\" ",
"test-ci": "mocha-webpack --webpack-config config/webpack-test.config.js --reporter list \"test/**/*.test.{ts,tsx}\" ",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test-ci",
"test:watch": "mocha-webpack --webpack-config webpack-test.config.js --watch --reporter list \"**/*.test.ts\"",
"lint:client": "tslint --project tsconfig.json -c tslint.json 'src/**/*.{ts,tsx}' --type-check",
"lint:server": "tslint --project tsconfig.json -c tslint.json 'src/server/**/*.{ts,tsx}' --type-check",
"lint": "npm run lint:server && npm run lint:client",
"start": "webpack-dev-server --config config/webpack.config.js --inline",
"build": "npm run build:client && npm run build:server",
"build:server": "tsc -p src/server",
"build:client": "webpack --config config/webpack-prod.config.js"
},
"repository": {
"type": "git",
"url": "https://milung.visualstudio.com/DefaultCollection/_git/SDA-PwaDicomViewer"
},
"keywords": [
"DICOM",
"PWA"
],
"author": "SDA team",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/chai-enzyme": "^0.6.2",
"@types/classnames": "^2.2.0",
"@types/enzyme": "^2.8.2",
"@types/express": "^4.0.36",
"@types/file-saver": "^0.0.1",
"@types/jsdom": "^11.0.1",
"@types/jszip": "^0.0.33",
"@types/lodash": "^4.14.71",
"@types/material-ui": "^0.17.16",
"@types/mocha": "^2.2.41",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.38",
"@types/react-dom": "^15.5.1",
"@types/react-dropzone": "^3.13.1",
"@types/react-router-dom": "^4.0.7",
"@types/react-tap-event-plugin": "0.0.30",
"@types/react-tooltip": "^3.3.0",
"@types/sinon": "^2.3.2",
"canvas-to-blob": "^0.0.0",
"chai": "^4.1.0",
"chai-enzyme": "^0.8.0",
"classnames": "^2.2.5",
"compression-webpack-plugin": "^1.0.0",
"cross-env": "^5.0.2",
"css-loader": "^0.28.4",
"dicom-parser": "^1.7.5",
"enzyme": "^2.9.1",
"file-saver": "^1.3.3",
"html-webpack-plugin": "^2.29.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdom": "^11.1.0",
"jszip": "^3.1.3",
"localforage": "^1.5.0",
"lodash.isequal": "^4.5.0",
"material-ui": "^0.18.6",
"mocha": "^3.4.2",
"mocha-webpack": "^0.7.0",
"null-loader": "^0.1.1",
"nyc": "^11.1.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-dropzone": "^3.13.3",
"react-file-download": "^0.3.4",
"react-icons": "^2.2.5",
"react-router-dom": "^4.1.2",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.6.1",
"react-tooltip": "^3.3.0",
"rxjs": "^5.4.2",
"sinon": "^2.3.8",
"source-map-loader": "^0.2.1",
"style-loader": "^0.18.2",
"ts-loader": "^2.3.0",
"ts-node": "^3.2.0",
"tslint": "^5.5.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.0.0",
"typescript": "^2.4.1",
"webpack": "^3.3.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.5.1",
"webpack-node-externals": "^1.6.0",
"xlsx": "^0.10.9",
"xlsx-style": "^0.8.13"
},
"dependencies": {
"express": "^4.15.3"
},
"nyc": {
"include": [
"src/**/*.{ts,tsx}"
],
"instrument": false,
"sourceMap": false
}
}