forked from CodeSoom/project-react-3-shinhyogeun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.94 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
{
"name": "project-react-3-shinhyogeun",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack build --mode=production",
"deploy": "gh-pages --remote upstream -d dist",
"lint": "eslint --ext js,jsx .",
"test": "npm run coverage ",
"test:unit": "jest",
"coverage": "npm run test:unit -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shinhyogeun/project-react-3-shinhyogeun.git"
},
"author": "shinhyogeun",
"license": "ISC",
"bugs": {
"url": "https://github.com/shinhyogeun/project-react-3-shinhyogeun/issues"
},
"homepage": "https://github.com/shinhyogeun/project-react-3-shinhyogeun#readme",
"dependencies": {
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@reduxjs/toolkit": "^1.5.0",
"@u-wave/react-youtube": "^0.7.2",
"query-string": "^7.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"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",
"dotenv-webpack": "^7.0.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",
"gh-pages": "^3.1.0",
"given2": "^2.1.7",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"jest-plugin-context": "^2.9.0",
"redux-mock-store": "^1.5.4",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}