-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "foam-form-web",
"version": "1.0.0",
"description": "easy way to create simple form",
"main": "index.js",
"repository": "https://github.com/wndudqus/foam-form-web.git",
"author": "JuyeongByeon <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.24.0",
"core-js": "^3.19.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.0",
"reactjs-popup": "^2.0.5",
"regenerator-runtime": "^0.13.9",
"styled-components": "^5.3.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress",
"dev": "webpack serve --progress --mode=development --config ./config/webpack.config.dev.js ",
"prod": "webpack --progress --mode=production --config ./config/webpack.config.prod.js "
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@reduxjs/toolkit": "^1.6.2",
"@testing-library/react": "^12.1.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-redux": "^7.1.20",
"@types/react-router-dom": "5.3.0",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-loader": "^8.2.3",
"css-loader": "^6.5.0",
"dotenv": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"npm": "^8.1.3",
"prettier": "^2.4.1",
"react-refresh": "^0.11.0",
"style-loader": "^3.3.1",
"typescript": "^4.4.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0",
"webpack-merge": "^5.8.0"
}
}