-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.29 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
108
109
110
111
{
"name": "hot-module-reloading",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --progress --color --config webpack/webpack.config.development.js --watch -d --inline",
"prebuild": "rimraf ./dist/*",
"build": "NODE_ENV=production webpack --color --config webpack/webpack.config.production.js",
"test:watch": "jest --watchAll",
"test": "jest --ci --runInBand",
"docker": "cd .. && docker-compose down && docker-compose up",
"deploy": "./deploy.sh"
},
"jest": {
"globals": {
"ts-jest": {
"skipBabel": true
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "./__mocks__/fileMock.js",
"\\.(s?css)$": "identity-obj-proxy"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFiles": [
"./test/testSetup.ts"
]
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/classnames": "^2.2.9",
"@types/d3": "^5.7.2",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.17",
"@types/lodash.debounce": "^4.0.6",
"@types/plotly.js": "^1.44.10",
"@types/puppeteer": "^1.19.1",
"@types/react": "^16.9.1",
"@types/react-dom": "^16.8.5",
"@types/react-hot-loader": "^4.1.0",
"@types/react-plotly.js": "^2.2.3",
"@types/react-redux": "^7.1.1",
"@types/react-router": "^5.0.3",
"@types/react-router-dom": "^4.3.4",
"@types/react-test-renderer": "^16.9.0",
"@types/react-transition-group": "^4.2.2",
"@types/redux-thunk": "^2.1.0",
"axios": "^0.19.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"d3": "^5.9.7",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"file-loader": "^4.2.0",
"fork-ts-checker-notifier-webpack-plugin": "^1.0.2",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.8.0",
"jest-junit": "^7.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"puppeteer": "^1.19.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.11",
"react-plotly.js": "^2.3.0",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-test-renderer": "^16.9.0",
"redux-thunk": "^2.3.0",
"resolve-url-loader": "^3.1.0",
"rimraf": "^3.0.0",
"sass-loader": "^7.2.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"classnames": "^2.2.6",
"core-js": "^3.2.1",
"lodash.debounce": "^4.0.8",
"plotly.js-basic-dist": "^1.49.2",
"whatwg-fetch": "^3.0.0"
}
}