-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.97 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
{
"name": "smartvideo-web-viewer",
"version": "1.2.1",
"description": "Remote web viewer for Sighthound Video",
"main": "index.js",
"license": "Private",
"scripts": {
"build": "rm -rf dist && npm run webpack -- --config webpack.config.js",
"build:release": "rm -rf dist && npm run webpack -- --config webpack.dist.config.js",
"start": "webpack-dev-server",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"watch": "webpack --watch",
"webpack": "webpack"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@types/react-day-picker": "^5.3.0",
"fecha": "^3.0.3",
"md5": "^2.2.1",
"promise-queue": "^2.2.5",
"react": "^16",
"react-day-picker": "^7.3.0",
"react-dom": "^16",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@types/bluebird": "^3.5.26",
"@types/enzyme": "^3.9.1",
"@types/fecha": "^2.3.1",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.5",
"@types/react": "^16",
"@types/react-dom": "^16",
"@types/react-router-dom": "^4.3.2",
"@types/react-test-renderer": "^16.8.1",
"@types/underscore": "^1.8.14",
"@types/video.js": "^7.2.10",
"@types/webpack": "^4.4.27",
"@types/webpack-env": "^1.13.9",
"acorn": "^6.1.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bluebird": "^3.5.4",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"node-sass": "^4.12.0",
"react-lazy-load": "^3.0.13",
"react-router-dom": "^5.0.0",
"react-test-renderer": "^16.8.6",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-jest": "^24.0.2",
"ts-loader": "^5.3.3",
"tslint": "^5.16.0",
"typescript": "^3.4.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"underscore": "^1.9.1",
"url": "^0.11.0",
"video.js": "^7.4.1",
"videojs-contrib-hls": "^5.15.0",
"videojs-flash": "^2.2.0",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"xmlrpc": "^1.3.2"
},
"jest": {
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(scss|css|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"roots": [
"<rootDir>/src/__tests__"
],
"collectCoverage": true
}
}