-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
100 lines (100 loc) · 3.15 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
{
"name": "calc",
"version": "1.1.0",
"main": "",
"author": "Ion D. FIlho <iondrimba@gmail.com>",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --config webpack.dev.js",
"prod": "cross-env NODE_ENV=production ./node_modules/.bin/webpack -p --config webpack.prod.js",
"test": "./node_modules/.bin/jest --coverage --testMatch '**/*.spec.js'",
"workbox": "./node_modules/.bin/workbox generateSW workbox-config.js",
"build": "npm run prod && npm run workbox"
},
"engines": {
"node": "15.11.0",
"npm": "7.6.0"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.13.17",
"prop-types": "^15.7.2"
},
"jest": {
"transform": {
"^.+\\.js?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"notify": false,
"clearMocks": true,
"restoreMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts}"
]
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/helper-compilation-targets": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"autoprefixer": "10.2.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-webpack-loaders": "0.9.0",
"braces": "^3.0.2",
"compression-webpack-plugin": "6.1.1",
"copy-webpack-plugin": "6.4.1",
"cross-env": "7.0.3",
"css-loader": "5.2.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "7.26.0",
"eslint-loader": "4.0.2",
"eslint-plugin-react": "7.23.2",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "6.2.0",
"howler": "2.2.1",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.2",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"json-loader": "0.5.7",
"mini-css-extract-plugin": "^1.5.1",
"node-sass": "^5.0.0",
"postcss-cssnext": "3.1.0",
"postcss-loader": "4.2.0",
"raw-loader": "4.0.2",
"react": "16.14.0",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.14.0",
"react-redux": "7.2.4",
"react-test-renderer": "16.14.0",
"redux": "4.0.5",
"resolve-url-loader": "3.1.3",
"sass-loader": "10.1.1",
"style-loader": "2.0.0",
"stylefmt": "^6.0.3",
"stylelint-config-standard": "22.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"sw-precache-webpack-plugin": "1.0.0",
"url-loader": "^4.1.1",
"webpack": "4.46.0",
"webpack-cleanup-plugin": "0.5.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "3.11.3",
"webpack-merge": "^5.7.3",
"workbox-cli": "^6.1.5",
"workbox-webpack-plugin": "^6.1.5"
}
}