-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 KB
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
{
"name": "frontend_code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:dll": "webpack --config ./webpack.dll.config.js",
"dev": "webpack-dev-server --config ./webpack.dev.config.js",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colmexcode/frontend_code.git"
},
"keywords": [],
"author": "Jose Garzon <jd.garzon12@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/colmexcode/frontend_code/issues"
},
"homepage": "https://cozy-place.vercel.app/",
"dependencies": {
"@babel/runtime": "^7.12.1",
"jwt-decode": "^3.0.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-redux": "7.2.1",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"styled-components": "5.2.0"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"add-asset-html-webpack-plugin": "3.1.3",
"babel-eslint": "10.1.0",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.11.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "7.8.1",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"file-loader": "6.1.1",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.0",
"jest": "^26.6.0",
"react-test-renderer": "17.0.1",
"url-loader": "4.1.1",
"webpack": "5.1.3",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0",
"webpack-pwa-manifest": "4.2.0",
"workbox-webpack-plugin": "^5.1.4"
},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>/src/__test__/setupTest.js"
],
"moduleNameMapper": {
"\\.(jpg||svg||png)$": "<rootDir>/src/__mocks__/imgMock.js"
}
}
}