-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.27 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
{
"name": "platzi-store",
"version": "1.0.0",
"description": "Proyecto para el curso de Jest",
"main": "src/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"format": "prettier --write '{*.js,src/**/*.{js,jsx}}'",
"lint": "eslint src/",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gndx/platzi-store.git"
},
"keywords": [
"React",
"Webpack",
"Babel",
"JavaScript",
"React-router",
"Redux"
],
"author": "Oscar Barajas <oscar@arepa.dev>",
"license": "MIT",
"dependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/preset-react": "7.22.5",
"babel-loader": "9.1.3",
"css-loader": "6.8.1",
"history": "5.3.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.3",
"mini-css-extract-plugin": "2.7.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.1.2",
"react-router-dom": "6.14.2",
"redux": "4.2.1",
"style-loader": "3.3.3",
"stylus": "0.59.0",
"stylus-loader": "7.1.3",
"webpack": "5.88.2",
"webpack-cli": "5.1.4"
},
"devDependencies": {
"@babel/eslint-parser": "7.22.9",
"@wojtekmaj/enzyme-adapter-react-17": "0.8.0",
"babel-plugin-transform-class-properties": "6.24.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"eslint": "8.46.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.1",
"jest": "29.6.2",
"jest-fetch-mock": "3.0.3",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"prettier": "3.0.0",
"react-test-renderer": "18.2.0",
"webpack-dev-server": "4.15.1"
},
"bugs": {
"url": "https://github.com/gndx/platzi-store/issues"
},
"homepage": "https://github.com/gndx/platzi-store/#readme",
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>/src/__test__/setupTest.js"
],
"moduleNameMapper": {
"\\.(styl|css)$": "<rootDir>/src/__mocks__/styleMock.js"
}
},
"packageManager": "yarn@3.6.1"
}