-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.25 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
{
"name": "project-react-3-najeong-kim",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"lint": "eslint --ext js,jsx .",
"test": "jest --watchAll",
"coverage": "jest --coverage",
"deploy": "gh-pages —remote upstream -d dist",
"build": "webpack build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Najeong-Kim/project-react-3-Najeong-Kim.git"
},
"author": "Najeong-Kim",
"license": "ISC",
"bugs": {
"url": "https://github.com/Najeong-Kim/project-react-3-Najeong-Kim/issues"
},
"homepage": "https://github.com/Najeong-Kim/project-react-3-Najeong-Kim#readme",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-lazy-load-image-component": "^1.5.1",
"react-redux": "^7.2.2",
"react-responsive": "^8.2.0",
"react-router-dom": "^5.2.0",
"react-thunk": "^1.0.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.21",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"jest-transform-stub": "^2.0.0",
"redux-mock-store": "^1.5.4",
"url-loader": "^4.1.1",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy",
"\\.(jpg|jpeg|png|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
}
}