-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
52 lines (52 loc) · 1.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
{
"name": "bandwidth-hero-extension",
"private": true,
"version": "2.1.4",
"description": "Browser extension which saves data by compressing images on the page",
"author": "Anatoliy Yastreb",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack --env.NODE_ENV=production -p",
"watch": "NODE_ENV=development webpack --env.NODE_ENV=none --watch",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@babel/runtime": "^7.3.4",
"axios": "^0.18.0",
"is-image": "^3.0.0",
"netmask": "^1.0.6",
"pretty-bytes": "^4.0.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-router-dom": "^5.0.0",
"semantic-ui-css": "^2.2.12",
"semantic-ui-react": "^0.71.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-preset-react-app": "^7.0.2",
"copy-webpack-plugin": "^5.0.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"img-loader": "^3.0.1",
"jest": "^24.5.0",
"mini-css-extract-plugin": "^0.5.0",
"react-test-renderer": "^16.8.4",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}