-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
113 lines (113 loc) · 3.37 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
112
113
{
"name": "marvel-api-explorer",
"version": "0.0.1",
"main": "",
"author": "Ion D. FIlho <[email protected]>",
"engines": {
"node": "15.11.0",
"npm": "7.6.0"
},
"license": "MIT",
"scripts": {
"preinstall": "npx npm-force-resolutions",
"prod": "cross-env NODE_ENV=production ./node_modules/.bin/webpack --config webpack.prod.js",
"start": "cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --config webpack.dev.js",
"test": "jest --coverage --testMatch '**/*.test.js'",
"test:watch": "npm run test -- --watch",
"workbox": "./node_modules/.bin/workbox generateSW workbox-config.js"
},
"jest": {
"notify": false,
"clearMocks": true,
"restoreMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts}"
]
},
"resolutions": {
"yargs-parser": ">=18.1.2",
"braces": ">=3.0.2",
"minimist": "^1.2.5",
"dot-prop": ">=5.1.1"
},
"repository": {
"type": "git",
"url": "[email protected]:iondrimba/marvel-api-explorer.git"
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"axios": "^0.21.1",
"babel-preset-env": "^1.7.0",
"connected-react-router": "^6.9.1",
"history": "^4.10.1",
"npm-force-resolutions": "0.0.10",
"prop-types": "^15.7.2",
"react-router": "^5.2.0",
"react-router-redux": "^4.0.8",
"redux-thunk": "^2.1.0",
"reselect": "^4.0.0",
"webpack-merge": "^5.7.3",
"workbox-cli": "^3.6.3"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.12.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",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-istanbul": "^3.0.1",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.1.1",
"copy-webpack-plugin": "^8.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.1.3",
"enzyme": "^3.11.0",
"eslint": "^7.21.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"hammerjs": "^2.0.8",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^4.5.2",
"image-webpack-loader": "^7.0.1",
"jest": "^26.6.3",
"json-loader": "^0.5.4",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^4.2.0",
"promise-polyfill": "^8.2.0",
"raw-loader": "^4.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"resolve-url-loader": "^3.1.3",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"stylefmt": "^6.0.3",
"stylelint-config-standard": "^21.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"sw-precache-webpack-plugin": "^1.0.0",
"system": "^2.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.36.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2",
"workbox-sw": "^6.1.2",
"workbox-webpack-plugin": "^6.1.2"
}
}